pub enum SortMethod {
Asc,
Desc,
Null,
}Expand description
Allowed values for ColumnDef::sort and related
methods.
Variants§
Trait Implementations§
Source§impl ToJsValue for SortMethod
impl ToJsValue for SortMethod
Source§fn to_js_value(&self) -> JsValue
fn to_js_value(&self) -> JsValue
Convert the current type to a
wasm_bindgen::JsValue;Auto Trait Implementations§
impl Freeze for SortMethod
impl RefUnwindSafe for SortMethod
impl Send for SortMethod
impl Sync for SortMethod
impl Unpin for SortMethod
impl UnwindSafe for SortMethod
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