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>>>,
}Fields§
§id: Option<Box<IDComparator>>§created_at: Option<Box<DateComparator>>§updated_at: Option<Box<DateComparator>>§name: Option<Box<StringComparator>>§description: Option<Box<StringComparator>>§position: Option<Box<NumberComparator>>§type: Option<Box<StringComparator>>§projects: Option<Box<ProjectCollectionFilter>>§and: Option<Vec<Box<ProjectStatusFilter>>>§or: Option<Vec<Box<ProjectStatusFilter>>>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