pub enum PathProperty<'a> {
Uid(usize),
Gid(usize),
Mode(&'a str),
Type(PathType),
Size(usize),
Link(PathBuf),
Md5Digest(Md5Checksum),
Sha256Digest(Sha256Checksum),
Time(usize),
}
Expand description
This type is used in a path line to define properties for that path.
Variants§
Uid(usize)
Gid(usize)
Mode(&'a str)
Type(PathType)
Size(usize)
Link(PathBuf)
Md5Digest(Md5Checksum)
Sha256Digest(Sha256Checksum)
Time(usize)
Trait Implementations§
Source§impl<'a> Clone for PathProperty<'a>
impl<'a> Clone for PathProperty<'a>
Source§fn clone(&self) -> PathProperty<'a>
fn clone(&self) -> PathProperty<'a>
Returns a copy 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 PathProperty<'a>
impl<'a> RefUnwindSafe for PathProperty<'a>
impl<'a> Send for PathProperty<'a>
impl<'a> Sync for PathProperty<'a>
impl<'a> Unpin for PathProperty<'a>
impl<'a> UnwindSafe for PathProperty<'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