pub enum FileSearchComparisonValue {
String(String),
Number(f64),
Boolean(bool),
List(Vec<FileSearchComparisonListValue>),
}Variants§
Trait Implementations§
Source§impl Clone for FileSearchComparisonValue
impl Clone for FileSearchComparisonValue
Source§fn clone(&self) -> FileSearchComparisonValue
fn clone(&self) -> FileSearchComparisonValue
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 FileSearchComparisonValue
impl Debug for FileSearchComparisonValue
Source§impl<'de> Deserialize<'de> for FileSearchComparisonValue
impl<'de> Deserialize<'de> for FileSearchComparisonValue
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
impl StructuralPartialEq for FileSearchComparisonValue
Auto Trait Implementations§
impl Freeze for FileSearchComparisonValue
impl RefUnwindSafe for FileSearchComparisonValue
impl Send for FileSearchComparisonValue
impl Sync for FileSearchComparisonValue
impl Unpin for FileSearchComparisonValue
impl UnsafeUnpin for FileSearchComparisonValue
impl UnwindSafe for FileSearchComparisonValue
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