pub struct ProjectUpdatesFilter {
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<ProjectUpdatesFilter>>>,
pub or: Option<Vec<Box<ProjectUpdatesFilter>>>,
}Expand description
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<ProjectUpdatesFilter>>>Compound filters, all of which need to be matched by the project updates.
or: Option<Vec<Box<ProjectUpdatesFilter>>>Compound filters, one of which need to be matched by the project updates.
Trait Implementations§
Source§impl Clone for ProjectUpdatesFilter
impl Clone for ProjectUpdatesFilter
Source§fn clone(&self) -> ProjectUpdatesFilter
fn clone(&self) -> ProjectUpdatesFilter
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 ProjectUpdatesFilter
impl Debug for ProjectUpdatesFilter
Source§impl Default for ProjectUpdatesFilter
impl Default for ProjectUpdatesFilter
Source§fn default() -> ProjectUpdatesFilter
fn default() -> ProjectUpdatesFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectUpdatesFilter
impl<'de> Deserialize<'de> for ProjectUpdatesFilter
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 ProjectUpdatesFilter
impl RefUnwindSafe for ProjectUpdatesFilter
impl Send for ProjectUpdatesFilter
impl Sync for ProjectUpdatesFilter
impl Unpin for ProjectUpdatesFilter
impl UnwindSafe for ProjectUpdatesFilter
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