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