pub enum CopyMethod {
Native,
Clone,
ServerSide,
Streamed,
Mixed,
}Expand description
Method used to complete a copy operation.
§Examples
use qubit_fs::copy::CopyMethod;
assert_eq!(CopyMethod::Streamed, CopyMethod::Streamed);Variants§
Native
Provider-native copy.
Clone
Storage-level clone or reflink copy.
ServerSide
Server-side copy.
Streamed
Client-side stream copy.
Mixed
Mixed copy strategy.
Trait Implementations§
Source§impl Clone for CopyMethod
impl Clone for CopyMethod
impl Copy for CopyMethod
Source§impl Debug for CopyMethod
impl Debug for CopyMethod
impl Eq for CopyMethod
Source§impl PartialEq for CopyMethod
impl PartialEq for CopyMethod
impl StructuralPartialEq for CopyMethod
Auto Trait Implementations§
impl Freeze for CopyMethod
impl RefUnwindSafe for CopyMethod
impl Send for CopyMethod
impl Sync for CopyMethod
impl Unpin for CopyMethod
impl UnsafeUnpin for CopyMethod
impl UnwindSafe for CopyMethod
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