pub struct TeamCollectionFilter {
pub id: Option<Box<IDComparator>>,
pub created_at: Option<Box<DateComparator>>,
pub updated_at: Option<Box<DateComparator>>,
pub and: Option<Vec<Box<TeamCollectionFilter>>>,
pub or: Option<Vec<Box<TeamCollectionFilter>>>,
pub some: Option<Box<TeamFilter>>,
pub every: Option<Box<TeamFilter>>,
pub length: Option<Box<NumberComparator>>,
pub parent: Option<Box<NullableTeamFilter>>,
}Expand description
Team collection 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.
and: Option<Vec<Box<TeamCollectionFilter>>>Compound filters, all of which need to be matched by the team.
or: Option<Vec<Box<TeamCollectionFilter>>>Compound filters, one of which need to be matched by the team.
some: Option<Box<TeamFilter>>Filters that needs to be matched by some teams.
every: Option<Box<TeamFilter>>Filters that needs to be matched by all teams.
length: Option<Box<NumberComparator>>Comparator for the collection length.
parent: Option<Box<NullableTeamFilter>>Filters that the teams parent must satisfy.
Trait Implementations§
Source§impl Clone for TeamCollectionFilter
impl Clone for TeamCollectionFilter
Source§fn clone(&self) -> TeamCollectionFilter
fn clone(&self) -> TeamCollectionFilter
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 TeamCollectionFilter
impl Debug for TeamCollectionFilter
Source§impl Default for TeamCollectionFilter
impl Default for TeamCollectionFilter
Source§fn default() -> TeamCollectionFilter
fn default() -> TeamCollectionFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TeamCollectionFilter
impl<'de> Deserialize<'de> for TeamCollectionFilter
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 TeamCollectionFilter
impl RefUnwindSafe for TeamCollectionFilter
impl Send for TeamCollectionFilter
impl Sync for TeamCollectionFilter
impl Unpin for TeamCollectionFilter
impl UnwindSafe for TeamCollectionFilter
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