pub enum FieldQueryResult {
Some {
value: Value,
path: String,
},
None,
Invalid,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for FieldQueryResult
impl Clone for FieldQueryResult
Source§fn clone(&self) -> FieldQueryResult
fn clone(&self) -> FieldQueryResult
Returns a duplicate 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 moreSource§impl Debug for FieldQueryResult
impl Debug for FieldQueryResult
Source§impl PartialEq for FieldQueryResult
impl PartialEq for FieldQueryResult
impl StructuralPartialEq for FieldQueryResult
Auto Trait Implementations§
impl Freeze for FieldQueryResult
impl RefUnwindSafe for FieldQueryResult
impl Send for FieldQueryResult
impl Sync for FieldQueryResult
impl Unpin for FieldQueryResult
impl UnwindSafe for FieldQueryResult
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