pub struct PropertyFilter {
pub name: String,
pub is_not_defined: bool,
pub text_match: Option<TextMatch>,
pub param_filters: Vec<ParameterFilter>,
}Available on crate feature
carddav only.Expand description
CardDAV property filter
Note: CardDAV property filters are similar to CalDAV but without time_range. Both use the shared TextMatch and ParameterFilter types.
Fields§
§name: String§is_not_defined: bool§text_match: Option<TextMatch>§param_filters: Vec<ParameterFilter>Trait Implementations§
Source§impl Clone for PropertyFilter
impl Clone for PropertyFilter
Source§fn clone(&self) -> PropertyFilter
fn clone(&self) -> PropertyFilter
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 PropertyFilter
impl RefUnwindSafe for PropertyFilter
impl Send for PropertyFilter
impl Sync for PropertyFilter
impl Unpin for PropertyFilter
impl UnwindSafe for PropertyFilter
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