#[repr(C)]pub enum notmuch_message_flag_t {
MATCH = 0,
EXCLUDED = 1,
GHOST = 2,
}Expand description
Message flags.
Variants§
MATCH = 0
EXCLUDED = 1
GHOST = 2
This message is a “ghost message”, meaning it has no filenames or content, but we know it exists because it was referenced by some other message. A ghost message has only a message ID and thread ID.
Trait Implementations§
Source§impl Clone for notmuch_message_flag_t
impl Clone for notmuch_message_flag_t
Source§fn clone(&self) -> notmuch_message_flag_t
fn clone(&self) -> notmuch_message_flag_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_message_flag_t
impl Debug for notmuch_message_flag_t
Source§impl PartialEq for notmuch_message_flag_t
impl PartialEq for notmuch_message_flag_t
impl Copy for notmuch_message_flag_t
impl Eq for notmuch_message_flag_t
impl StructuralPartialEq for notmuch_message_flag_t
Auto Trait Implementations§
impl Freeze for notmuch_message_flag_t
impl RefUnwindSafe for notmuch_message_flag_t
impl Send for notmuch_message_flag_t
impl Sync for notmuch_message_flag_t
impl Unpin for notmuch_message_flag_t
impl UnwindSafe for notmuch_message_flag_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