pub enum SetProperty<'a> {
    Uid(u32),
    Gid(u32),
    Mode(&'a str),
    Type(PathType),
}Expand description
Represents the properties that may be set in /set lines.
Variants§
Trait Implementations§
Source§impl<'a> Clone for SetProperty<'a>
 
impl<'a> Clone for SetProperty<'a>
Source§fn clone(&self) -> SetProperty<'a>
 
fn clone(&self) -> SetProperty<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreAuto Trait Implementations§
impl<'a> Freeze for SetProperty<'a>
impl<'a> RefUnwindSafe for SetProperty<'a>
impl<'a> Send for SetProperty<'a>
impl<'a> Sync for SetProperty<'a>
impl<'a> Unpin for SetProperty<'a>
impl<'a> UnwindSafe for SetProperty<'a>
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