Enum jmap_client::principal::query::Filter
source · pub enum Filter {
Email {
value: String,
},
Name {
value: String,
},
DomainName {
value: String,
},
Text {
value: String,
},
Type {
value: Type,
},
Timezone {
value: String,
},
Members {
value: String,
},
QuotaLt {
value: u32,
},
QuotaGt {
value: u32,
},
}Variants§
Implementations§
source§impl Filter
impl Filter
pub fn name(value: impl Into<String>) -> Self
pub fn domain_name(value: impl Into<String>) -> Self
pub fn email(value: impl Into<String>) -> Self
pub fn text(value: impl Into<String>) -> Self
pub fn timezone(value: impl Into<String>) -> Self
pub fn members(value: impl Into<String>) -> Self
pub fn ptype(value: Type) -> Self
pub fn quota_lower_than(value: u32) -> Self
pub fn quota_greater_than(value: u32) -> Self
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Filter
impl Send for Filter
impl Sync for Filter
impl Unpin for Filter
impl UnwindSafe for Filter
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