pub enum SortValue {
Str(String),
Num(f64),
Bool(bool),
}Variants§
Trait Implementations§
impl StructuralPartialEq for SortValue
Auto Trait Implementations§
impl Freeze for SortValue
impl RefUnwindSafe for SortValue
impl Send for SortValue
impl Sync for SortValue
impl Unpin for SortValue
impl UnsafeUnpin for SortValue
impl UnwindSafe for SortValue
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