pub enum FileLinkMode {
Auto,
Symlink,
Hardlink,
}Variants§
Trait Implementations§
Source§impl Clone for FileLinkMode
impl Clone for FileLinkMode
Source§fn clone(&self) -> FileLinkMode
fn clone(&self) -> FileLinkMode
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 FileLinkMode
impl Debug for FileLinkMode
Source§impl Default for FileLinkMode
impl Default for FileLinkMode
Source§fn default() -> FileLinkMode
fn default() -> FileLinkMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FileLinkMode
impl<'de> Deserialize<'de> for FileLinkMode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FileLinkMode
impl PartialEq for FileLinkMode
Source§fn eq(&self, other: &FileLinkMode) -> bool
fn eq(&self, other: &FileLinkMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FileLinkMode
impl Eq for FileLinkMode
impl StructuralPartialEq for FileLinkMode
Auto Trait Implementations§
impl Freeze for FileLinkMode
impl RefUnwindSafe for FileLinkMode
impl Send for FileLinkMode
impl Sync for FileLinkMode
impl Unpin for FileLinkMode
impl UnsafeUnpin for FileLinkMode
impl UnwindSafe for FileLinkMode
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