pub type TicKVKVStoreComponentType<K, T> = TicKVKVStore<'static, K, T>;
Aliased Type§
struct TicKVKVStoreComponentType<K, T> { /* private fields */ }
Implementations
Source§impl<'a, K, T> TicKVKVStore<'a, K, T>
impl<'a, K, T> TicKVKVStore<'a, K, T>
pub fn new(kv: &'a K, key: &'static mut T) -> TicKVKVStore<'a, K, T>
Trait Implementations
Source§impl<'a, K, T> KV<'a> for TicKVKVStore<'a, K, T>
impl<'a, K, T> KV<'a> for TicKVKVStore<'a, K, T>
Source§fn set_client(&self, client: &'a dyn KVClient)
fn set_client(&self, client: &'a dyn KVClient)
Configure the client for operation callbacks.
Source§fn get(
&self,
key: SubSliceMut<'static, u8>,
value: SubSliceMut<'static, u8>,
) -> Result<(), (SubSliceMut<'static, u8>, SubSliceMut<'static, u8>, ErrorCode)>
fn get( &self, key: SubSliceMut<'static, u8>, value: SubSliceMut<'static, u8>, ) -> Result<(), (SubSliceMut<'static, u8>, SubSliceMut<'static, u8>, ErrorCode)>
Retrieve a value based on the given key. Read more
Source§fn set(
&self,
key: SubSliceMut<'static, u8>,
value: SubSliceMut<'static, u8>,
) -> Result<(), (SubSliceMut<'static, u8>, SubSliceMut<'static, u8>, ErrorCode)>
fn set( &self, key: SubSliceMut<'static, u8>, value: SubSliceMut<'static, u8>, ) -> Result<(), (SubSliceMut<'static, u8>, SubSliceMut<'static, u8>, ErrorCode)>
Store a value based on the given key. If the key does not exist it will
be added. If the key already exists the value will be updated. Read more
Source§fn add(
&self,
key: SubSliceMut<'static, u8>,
value: SubSliceMut<'static, u8>,
) -> Result<(), (SubSliceMut<'static, u8>, SubSliceMut<'static, u8>, ErrorCode)>
fn add( &self, key: SubSliceMut<'static, u8>, value: SubSliceMut<'static, u8>, ) -> Result<(), (SubSliceMut<'static, u8>, SubSliceMut<'static, u8>, ErrorCode)>
Store a new value based on the given key. If the key does not exist it
will be added. If the key already exists an error callback will be
provided. Read more
Source§fn update(
&self,
key: SubSliceMut<'static, u8>,
value: SubSliceMut<'static, u8>,
) -> Result<(), (SubSliceMut<'static, u8>, SubSliceMut<'static, u8>, ErrorCode)>
fn update( &self, key: SubSliceMut<'static, u8>, value: SubSliceMut<'static, u8>, ) -> Result<(), (SubSliceMut<'static, u8>, SubSliceMut<'static, u8>, ErrorCode)>
Modify a value based on the given key. If the key does not exist it an
error callback will be provided. Read more
Source§impl<'a, K, T> KVSystemClient<T> for TicKVKVStore<'a, K, T>
impl<'a, K, T> KVSystemClient<T> for TicKVKVStore<'a, K, T>
Source§fn generate_key_complete(
&self,
result: Result<(), ErrorCode>,
unhashed_key: SubSliceMut<'static, u8>,
hashed_key: &'static mut T,
)
fn generate_key_complete( &self, result: Result<(), ErrorCode>, unhashed_key: SubSliceMut<'static, u8>, hashed_key: &'static mut T, )
This callback is called when the append_key operation completes. Read more
Source§fn append_key_complete(
&self,
result: Result<(), ErrorCode>,
key: &'static mut T,
value: SubSliceMut<'static, u8>,
)
fn append_key_complete( &self, result: Result<(), ErrorCode>, key: &'static mut T, value: SubSliceMut<'static, u8>, )
This callback is called when the append_key operation completes. Read more
Source§fn get_value_complete(
&self,
result: Result<(), ErrorCode>,
key: &'static mut T,
ret_buf: SubSliceMut<'static, u8>,
)
fn get_value_complete( &self, result: Result<(), ErrorCode>, key: &'static mut T, ret_buf: SubSliceMut<'static, u8>, )
This callback is called when the get_value operation completes. Read more
Source§fn invalidate_key_complete(
&self,
result: Result<(), ErrorCode>,
key: &'static mut T,
)
fn invalidate_key_complete( &self, result: Result<(), ErrorCode>, key: &'static mut T, )
This callback is called when the invalidate_key operation completes. Read more