pub struct ProjectStatusFilter {
pub id: Option<Box<IDComparator>>,
pub created_at: Option<Box<DateComparator>>,
pub updated_at: Option<Box<DateComparator>>,
pub name: Option<Box<StringComparator>>,
pub description: Option<Box<StringComparator>>,
pub position: Option<Box<NumberComparator>>,
pub type: Option<Box<StringComparator>>,
pub projects: Option<Box<ProjectCollectionFilter>>,
pub and: Option<Vec<Box<ProjectStatusFilter>>>,
pub or: Option<Vec<Box<ProjectStatusFilter>>>,
}Expand description
Project status filtering options.
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.
name: Option<Box<StringComparator>>Comparator for the project status name.
description: Option<Box<StringComparator>>Comparator for the project status description.
position: Option<Box<NumberComparator>>Comparator for the project status position.
type: Option<Box<StringComparator>>Comparator for the project status type.
projects: Option<Box<ProjectCollectionFilter>>Filters that the project status projects must satisfy.
and: Option<Vec<Box<ProjectStatusFilter>>>Compound filters, all of which need to be matched by the project status.
or: Option<Vec<Box<ProjectStatusFilter>>>Compound filters, one of which needs to be matched by the project status.
Trait Implementations§
Source§impl Clone for ProjectStatusFilter
impl Clone for ProjectStatusFilter
Source§fn clone(&self) -> ProjectStatusFilter
fn clone(&self) -> ProjectStatusFilter
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 ProjectStatusFilter
impl Debug for ProjectStatusFilter
Source§impl Default for ProjectStatusFilter
impl Default for ProjectStatusFilter
Source§fn default() -> ProjectStatusFilter
fn default() -> ProjectStatusFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectStatusFilter
impl<'de> Deserialize<'de> for ProjectStatusFilter
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 ProjectStatusFilter
impl RefUnwindSafe for ProjectStatusFilter
impl Send for ProjectStatusFilter
impl Sync for ProjectStatusFilter
impl Unpin for ProjectStatusFilter
impl UnwindSafe for ProjectStatusFilter
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