pub trait Copy:
Unpin
+ Send
+ Sync {
// Required methods
fn next(
&mut self,
) -> impl Future<Output = Result<Option<usize>, Error>> + MaybeSend;
fn abort(&mut self) -> impl Future<Output = Result<(), Error>> + MaybeSend;
}Expand description
Copy is the trait that OpenDAL returns for stateful copy operations.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.