Enum jmap_client::email::query::Comparator
source · [−]pub enum Comparator {
ReceivedAt,
Size,
From,
To,
Subject,
SentAt,
HasKeyword {
keyword: String,
},
AllInThreadHaveKeyword {
keyword: String,
},
SomeInThreadHaveKeyword {
keyword: String,
},
Cc,
}Variants
ReceivedAt
Size
From
To
Subject
SentAt
HasKeyword
Fields
keyword: StringAllInThreadHaveKeyword
Fields
keyword: StringSomeInThreadHaveKeyword
Fields
keyword: StringCc
Implementations
sourceimpl Comparator
impl Comparator
pub fn received_at() -> Comparator<Comparator>
pub fn size() -> Comparator<Comparator>
pub fn from() -> Comparator<Comparator>
pub fn to() -> Comparator<Comparator>
pub fn cc() -> Comparator<Comparator>
pub fn subject() -> Comparator<Comparator>
pub fn sent_at() -> Comparator<Comparator>
pub fn has_keyword(keyword: impl Into<String>) -> Comparator<Comparator>
pub fn all_in_thread_have_keyword(
keyword: impl Into<String>
) -> Comparator<Comparator>
pub fn some_in_thread_have_keyword(
keyword: impl Into<String>
) -> Comparator<Comparator>
Trait Implementations
sourceimpl Clone for Comparator
impl Clone for Comparator
sourcefn clone(&self) -> Comparator
fn clone(&self) -> Comparator
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for Comparator
impl Debug for Comparator
sourceimpl Serialize for Comparator
impl Serialize for Comparator
Auto Trait Implementations
impl RefUnwindSafe for Comparator
impl Send for Comparator
impl Sync for Comparator
impl Unpin for Comparator
impl UnwindSafe for Comparator
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more