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