pub struct InitiativeUpdatesFilter {
pub id: MaybeUndefined<IDComparator>,
pub created_at: MaybeUndefined<DateComparator>,
pub updated_at: MaybeUndefined<DateComparator>,
pub and: MaybeUndefined<Vec<InitiativeUpdatesFilter>>,
pub or: MaybeUndefined<Vec<InitiativeUpdatesFilter>>,
}Expand description
Options for filtering initiatives by initiative updates.
Fields§
§id: MaybeUndefined<IDComparator>Comparator for the identifier.
created_at: MaybeUndefined<DateComparator>Comparator for the created at date.
updated_at: MaybeUndefined<DateComparator>Comparator for the updated at date.
and: MaybeUndefined<Vec<InitiativeUpdatesFilter>>Compound filters, all of which need to be matched by the initiative updates.
or: MaybeUndefined<Vec<InitiativeUpdatesFilter>>Compound filters, one of which need to be matched by the initiative updates.
Trait Implementations§
Source§impl Clone for InitiativeUpdatesFilter
impl Clone for InitiativeUpdatesFilter
Source§fn clone(&self) -> InitiativeUpdatesFilter
fn clone(&self) -> InitiativeUpdatesFilter
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 InitiativeUpdatesFilter
impl Debug for InitiativeUpdatesFilter
Source§impl Default for InitiativeUpdatesFilter
impl Default for InitiativeUpdatesFilter
Source§fn default() -> InitiativeUpdatesFilter
fn default() -> InitiativeUpdatesFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InitiativeUpdatesFilter
impl<'de> Deserialize<'de> for InitiativeUpdatesFilter
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for InitiativeUpdatesFilter
impl RefUnwindSafe for InitiativeUpdatesFilter
impl Send for InitiativeUpdatesFilter
impl Sync for InitiativeUpdatesFilter
impl Unpin for InitiativeUpdatesFilter
impl UnsafeUnpin for InitiativeUpdatesFilter
impl UnwindSafe for InitiativeUpdatesFilter
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