pub trait Host: Send + HostBucket {
// Required methods
fn open<'life0, 'async_trait>(
&'life0 mut self,
identifier: String,
) -> Pin<Box<dyn Future<Output = Result<Resource<Bucket>, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn convert_error(&mut self, err: Error) -> Result<Error>;
}
Required Methods§
Sourcefn open<'life0, 'async_trait>(
&'life0 mut self,
identifier: String,
) -> Pin<Box<dyn Future<Output = Result<Resource<Bucket>, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn open<'life0, 'async_trait>(
&'life0 mut self,
identifier: String,
) -> Pin<Box<dyn Future<Output = Result<Resource<Bucket>, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Get the bucket with the specified identifier.
identifier
must refer to a bucket provided by the host.
error::no-such-store
will be raised if the identifier
is not recognized.
fn convert_error(&mut self, err: Error) -> Result<Error>
Implementations on Foreign Types§
Source§impl<_T: Host + ?Sized + Send> Host for &mut _T
impl<_T: Host + ?Sized + Send> Host for &mut _T
Source§fn open<'life0, 'async_trait>(
&'life0 mut self,
identifier: String,
) -> Pin<Box<dyn Future<Output = Result<Resource<Bucket>, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn open<'life0, 'async_trait>(
&'life0 mut self,
identifier: String,
) -> Pin<Box<dyn Future<Output = Result<Resource<Bucket>, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Get the bucket with the specified identifier.
identifier
must refer to a bucket provided by the host.
error::no-such-store
will be raised if the identifier
is not recognized.