pub struct InitiativeUpdatesCollectionFilter {
pub id: MaybeUndefined<IDComparator>,
pub created_at: MaybeUndefined<DateComparator>,
pub updated_at: MaybeUndefined<DateComparator>,
pub and: MaybeUndefined<Vec<InitiativeUpdatesCollectionFilter>>,
pub or: MaybeUndefined<Vec<InitiativeUpdatesCollectionFilter>>,
pub some: MaybeUndefined<InitiativeUpdatesFilter>,
pub every: MaybeUndefined<InitiativeUpdatesFilter>,
pub length: MaybeUndefined<NumberComparator>,
}Expand description
Collection filtering 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<InitiativeUpdatesCollectionFilter>>Compound filters, all of which need to be matched by the initiative update.
or: MaybeUndefined<Vec<InitiativeUpdatesCollectionFilter>>Compound filters, one of which need to be matched by the update.
some: MaybeUndefined<InitiativeUpdatesFilter>Filters that needs to be matched by some initiative updates.
every: MaybeUndefined<InitiativeUpdatesFilter>Filters that needs to be matched by all initiative updates.
length: MaybeUndefined<NumberComparator>Comparator for the collection length.
Trait Implementations§
Source§impl Clone for InitiativeUpdatesCollectionFilter
impl Clone for InitiativeUpdatesCollectionFilter
Source§fn clone(&self) -> InitiativeUpdatesCollectionFilter
fn clone(&self) -> InitiativeUpdatesCollectionFilter
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 Default for InitiativeUpdatesCollectionFilter
impl Default for InitiativeUpdatesCollectionFilter
Source§fn default() -> InitiativeUpdatesCollectionFilter
fn default() -> InitiativeUpdatesCollectionFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InitiativeUpdatesCollectionFilter
impl<'de> Deserialize<'de> for InitiativeUpdatesCollectionFilter
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 InitiativeUpdatesCollectionFilter
impl RefUnwindSafe for InitiativeUpdatesCollectionFilter
impl Send for InitiativeUpdatesCollectionFilter
impl Sync for InitiativeUpdatesCollectionFilter
impl Unpin for InitiativeUpdatesCollectionFilter
impl UnsafeUnpin for InitiativeUpdatesCollectionFilter
impl UnwindSafe for InitiativeUpdatesCollectionFilter
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