#[repr(C)]pub enum notmuch_sort_t {
OLDEST_FIRST = 0,
NEWEST_FIRST = 1,
MESSAGE_ID = 2,
UNSORTED = 3,
}Expand description
Sort values for notmuch_query_set_sort.
Variants§
OLDEST_FIRST = 0
Oldest first.
NEWEST_FIRST = 1
Newest first.
MESSAGE_ID = 2
Sort by message-id.
UNSORTED = 3
Do not sort.
Trait Implementations§
Source§impl Clone for notmuch_sort_t
impl Clone for notmuch_sort_t
Source§fn clone(&self) -> notmuch_sort_t
fn clone(&self) -> notmuch_sort_t
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 notmuch_sort_t
impl Debug for notmuch_sort_t
Source§impl PartialEq for notmuch_sort_t
impl PartialEq for notmuch_sort_t
impl Copy for notmuch_sort_t
impl Eq for notmuch_sort_t
impl StructuralPartialEq for notmuch_sort_t
Auto Trait Implementations§
impl Freeze for notmuch_sort_t
impl RefUnwindSafe for notmuch_sort_t
impl Send for notmuch_sort_t
impl Sync for notmuch_sort_t
impl Unpin for notmuch_sort_t
impl UnwindSafe for notmuch_sort_t
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