pub struct PropertyFilter {
pub name: String,
pub is_not_defined: bool,
pub text_match: Option<TextMatch>,
pub time_range: Option<TimeRange>,
pub param_filters: Vec<ParameterFilter>,
}Available on crate feature
caldav only.Fields§
§name: String§is_not_defined: bool§text_match: Option<TextMatch>§time_range: Option<TimeRange>§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