pub struct SortKeyList {
pub keys: Vec<SortKey>,
}Expand description
Server-side sort request control value (RFC 2891).
Fields§
§keys: Vec<SortKey>Implementations§
Source§impl SortKeyList
impl SortKeyList
pub fn new(keys: Vec<SortKey>) -> SortKeyList
pub fn to_control(&self, critical: bool) -> Control
Trait Implementations§
Source§impl Clone for SortKeyList
impl Clone for SortKeyList
Source§fn clone(&self) -> SortKeyList
fn clone(&self) -> SortKeyList
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 moreAuto Trait Implementations§
impl Freeze for SortKeyList
impl RefUnwindSafe for SortKeyList
impl Send for SortKeyList
impl Sync for SortKeyList
impl Unpin for SortKeyList
impl UnsafeUnpin for SortKeyList
impl UnwindSafe for SortKeyList
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