pub struct RemoteAppScope<'a> { /* private fields */ }Trait Implementations§
Source§impl<'a> AppScope for RemoteAppScope<'a>
impl<'a> AppScope for RemoteAppScope<'a>
fn get<'life0, 'life1, 'async_trait>(
&'life0 self,
key: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Value>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn set<'life0, 'life1, 'async_trait>(
&'life0 self,
key: &'life1 str,
value: Value,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn delete<'life0, 'life1, 'async_trait>(
&'life0 self,
key: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn vault(&self, master_key: &[u8]) -> Box<dyn VaultScope + '_>
Auto Trait Implementations§
impl<'a> Freeze for RemoteAppScope<'a>
impl<'a> !RefUnwindSafe for RemoteAppScope<'a>
impl<'a> Send for RemoteAppScope<'a>
impl<'a> Sync for RemoteAppScope<'a>
impl<'a> Unpin for RemoteAppScope<'a>
impl<'a> !UnwindSafe for RemoteAppScope<'a>
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