Struct capsules_extra::virtual_kv::MuxKVPermissions
source · pub struct MuxKVPermissions<'a, V: KVPermissions<'a>> { /* private fields */ }
Implementations§
source§impl<'a, V: KVPermissions<'a>> MuxKVPermissions<'a, V>
impl<'a, V: KVPermissions<'a>> MuxKVPermissions<'a, V>
pub fn new(kv: &'a V) -> MuxKVPermissions<'a, V>
Trait Implementations§
source§impl<'a, V: KVPermissions<'a>> KVClient for MuxKVPermissions<'a, V>
impl<'a, V: KVPermissions<'a>> KVClient for MuxKVPermissions<'a, V>
source§fn get_complete(
&self,
result: Result<(), ErrorCode>,
key: SubSliceMut<'static, u8>,
value: SubSliceMut<'static, u8>,
)
fn get_complete( &self, result: Result<(), ErrorCode>, key: SubSliceMut<'static, u8>, value: SubSliceMut<'static, u8>, )
This callback is called when the get operation completes. Read more
source§fn set_complete(
&self,
result: Result<(), ErrorCode>,
key: SubSliceMut<'static, u8>,
value: SubSliceMut<'static, u8>,
)
fn set_complete( &self, result: Result<(), ErrorCode>, key: SubSliceMut<'static, u8>, value: SubSliceMut<'static, u8>, )
This callback is called when the set operation completes. Read more
source§fn add_complete(
&self,
result: Result<(), ErrorCode>,
key: SubSliceMut<'static, u8>,
value: SubSliceMut<'static, u8>,
)
fn add_complete( &self, result: Result<(), ErrorCode>, key: SubSliceMut<'static, u8>, value: SubSliceMut<'static, u8>, )
This callback is called when the add operation completes. Read more
source§fn update_complete(
&self,
result: Result<(), ErrorCode>,
key: SubSliceMut<'static, u8>,
value: SubSliceMut<'static, u8>,
)
fn update_complete( &self, result: Result<(), ErrorCode>, key: SubSliceMut<'static, u8>, value: SubSliceMut<'static, u8>, )
This callback is called when the update operation completes. Read more
source§fn delete_complete(
&self,
result: Result<(), ErrorCode>,
key: SubSliceMut<'static, u8>,
)
fn delete_complete( &self, result: Result<(), ErrorCode>, key: SubSliceMut<'static, u8>, )
This callback is called when the delete operation completes. Read more
Auto Trait Implementations§
impl<'a, V> !Freeze for MuxKVPermissions<'a, V>
impl<'a, V> !RefUnwindSafe for MuxKVPermissions<'a, V>
impl<'a, V> !Send for MuxKVPermissions<'a, V>
impl<'a, V> !Sync for MuxKVPermissions<'a, V>
impl<'a, V> Unpin for MuxKVPermissions<'a, V>
impl<'a, V> !UnwindSafe for MuxKVPermissions<'a, V>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more