pub trait DeleteDyn:
Unpin
+ Send
+ Sync {
// Required methods
fn delete_dyn<'a>(
&'a mut self,
path: &'a str,
args: OpDelete,
) -> BoxedFuture<'a, Result<()>>;
fn close_dyn(&mut self) -> BoxedFuture<'_, Result<()>>;
}Expand description
The dyn version of Delete
Required Methods§
Sourcefn delete_dyn<'a>(
&'a mut self,
path: &'a str,
args: OpDelete,
) -> BoxedFuture<'a, Result<()>>
fn delete_dyn<'a>( &'a mut self, path: &'a str, args: OpDelete, ) -> BoxedFuture<'a, Result<()>>
The dyn version of Delete::delete
Sourcefn close_dyn(&mut self) -> BoxedFuture<'_, Result<()>>
fn close_dyn(&mut self) -> BoxedFuture<'_, Result<()>>
The dyn version of Delete::close