pub enum FuzzyFileSearchMatchType {
File,
Directory,
}Expand description
FuzzyFileSearchMatchType
JSON schema
{
"type": "string",
"enum": [
"file",
"directory"
]
}Variants§
Trait Implementations§
Source§impl Clone for FuzzyFileSearchMatchType
impl Clone for FuzzyFileSearchMatchType
Source§fn clone(&self) -> FuzzyFileSearchMatchType
fn clone(&self) -> FuzzyFileSearchMatchType
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 FuzzyFileSearchMatchType
impl Debug for FuzzyFileSearchMatchType
Source§impl<'de> Deserialize<'de> for FuzzyFileSearchMatchType
impl<'de> Deserialize<'de> for FuzzyFileSearchMatchType
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 Display for FuzzyFileSearchMatchType
impl Display for FuzzyFileSearchMatchType
Source§impl FromStr for FuzzyFileSearchMatchType
impl FromStr for FuzzyFileSearchMatchType
Source§impl Hash for FuzzyFileSearchMatchType
impl Hash for FuzzyFileSearchMatchType
Source§impl Ord for FuzzyFileSearchMatchType
impl Ord for FuzzyFileSearchMatchType
Source§fn cmp(&self, other: &FuzzyFileSearchMatchType) -> Ordering
fn cmp(&self, other: &FuzzyFileSearchMatchType) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FuzzyFileSearchMatchType
impl PartialEq for FuzzyFileSearchMatchType
Source§fn eq(&self, other: &FuzzyFileSearchMatchType) -> bool
fn eq(&self, other: &FuzzyFileSearchMatchType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for FuzzyFileSearchMatchType
impl PartialOrd for FuzzyFileSearchMatchType
Source§impl Serialize for FuzzyFileSearchMatchType
impl Serialize for FuzzyFileSearchMatchType
Source§impl TryFrom<&String> for FuzzyFileSearchMatchType
impl TryFrom<&String> for FuzzyFileSearchMatchType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for FuzzyFileSearchMatchType
impl TryFrom<&str> for FuzzyFileSearchMatchType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for FuzzyFileSearchMatchType
impl TryFrom<String> for FuzzyFileSearchMatchType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for FuzzyFileSearchMatchType
impl Eq for FuzzyFileSearchMatchType
impl StructuralPartialEq for FuzzyFileSearchMatchType
Auto Trait Implementations§
impl Freeze for FuzzyFileSearchMatchType
impl RefUnwindSafe for FuzzyFileSearchMatchType
impl Send for FuzzyFileSearchMatchType
impl Sync for FuzzyFileSearchMatchType
impl Unpin for FuzzyFileSearchMatchType
impl UnsafeUnpin for FuzzyFileSearchMatchType
impl UnwindSafe for FuzzyFileSearchMatchType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.