pub enum CopyMethod {
Local,
ServerSide,
Stream,
Mixed,
}Expand description
Method used to complete a copy operation.
Variants§
Local
Local provider-native copy.
ServerSide
Server-side copy.
Stream
Client-side stream copy.
Mixed
Mixed copy strategy.
Trait Implementations§
Source§impl Clone for CopyMethod
impl Clone for CopyMethod
Source§fn clone(&self) -> CopyMethod
fn clone(&self) -> CopyMethod
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CopyMethod
impl Debug for CopyMethod
Source§impl PartialEq for CopyMethod
impl PartialEq for CopyMethod
Source§fn eq(&self, other: &CopyMethod) -> bool
fn eq(&self, other: &CopyMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CopyMethod
impl Eq 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoValueDefault<T> for T
impl<T> IntoValueDefault<T> for T
Source§fn into_value_default(self) -> T
fn into_value_default(self) -> T
Converts this argument into the default value.