pub enum FilePathSpec {
Literal(StringLiteral),
NonLiteral(FilePathSpecNonLiteral),
}Variants
Literal(StringLiteral)
NonLiteral(FilePathSpecNonLiteral)
Trait Implementations
sourceimpl Clone for FilePathSpec
impl Clone for FilePathSpec
sourcefn clone(&self) -> FilePathSpec
fn clone(&self) -> FilePathSpec
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for FilePathSpec
impl Debug for FilePathSpec
sourceimpl<'a> From<&'a FilePathSpec> for RefNodes<'a>
impl<'a> From<&'a FilePathSpec> for RefNodes<'a>
sourcefn from(x: &'a FilePathSpec) -> Self
fn from(x: &'a FilePathSpec) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<&'a FilePathSpec> for RefNode<'a>
impl<'a> From<&'a FilePathSpec> for RefNode<'a>
sourcefn from(x: &'a FilePathSpec) -> Self
fn from(x: &'a FilePathSpec) -> Self
Converts to this type from the input type.
sourceimpl From<FilePathSpec> for AnyNode
impl From<FilePathSpec> for AnyNode
sourcefn from(x: FilePathSpec) -> Self
fn from(x: FilePathSpec) -> Self
Converts to this type from the input type.
sourceimpl<'a> IntoIterator for &'a FilePathSpec
impl<'a> IntoIterator for &'a FilePathSpec
sourceimpl PartialEq<FilePathSpec> for FilePathSpec
impl PartialEq<FilePathSpec> for FilePathSpec
sourcefn eq(&self, other: &FilePathSpec) -> bool
fn eq(&self, other: &FilePathSpec) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &FilePathSpec) -> bool
fn ne(&self, other: &FilePathSpec) -> bool
This method tests for !=.
sourceimpl<'a> TryFrom<&'a FilePathSpec> for Locate
impl<'a> TryFrom<&'a FilePathSpec> for Locate
sourceimpl TryFrom<AnyNode> for FilePathSpec
impl TryFrom<AnyNode> for FilePathSpec
sourceimpl TryFrom<FilePathSpec> for Locate
impl TryFrom<FilePathSpec> for Locate
impl StructuralPartialEq for FilePathSpec
Auto Trait Implementations
impl RefUnwindSafe for FilePathSpec
impl Send for FilePathSpec
impl Sync for FilePathSpec
impl Unpin for FilePathSpec
impl UnwindSafe for FilePathSpec
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more