pub trait CopyIntoBackend<Dst: Backend, Src: Backend>: HasBackend<Backend = Src> {
type Output: HasBackend<Backend = Dst>;
// Required method
fn copy_into_backend(self, backend: &Dst) -> Result<Self::Output, CopyError>;
}Expand description
Copy data between different backends