pub enum FileSystemPath {
Path {
path: AbsolutePathBuf,
},
Glob_pattern {
pattern: String,
},
Special {
value: FileSystemSpecialPath,
},
}Variants§
Trait Implementations§
Source§impl Clone for FileSystemPath
impl Clone for FileSystemPath
Source§fn clone(&self) -> FileSystemPath
fn clone(&self) -> FileSystemPath
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 FileSystemPath
impl Debug for FileSystemPath
Source§impl<'de> Deserialize<'de> for FileSystemPath
impl<'de> Deserialize<'de> for FileSystemPath
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
Auto Trait Implementations§
impl Freeze for FileSystemPath
impl RefUnwindSafe for FileSystemPath
impl Send for FileSystemPath
impl Sync for FileSystemPath
impl Unpin for FileSystemPath
impl UnsafeUnpin for FileSystemPath
impl UnwindSafe for FileSystemPath
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