#[non_exhaustive]pub struct ProjectMilestoneFilter {
pub and: Option<Vec<ProjectMilestoneFilter>>,
pub or: Option<Vec<ProjectMilestoneFilter>>,
pub id: Option<IdComparator>,
pub name: Option<StringComparator>,
pub target_date: Option<DateComparator>,
}Expand description
Filter for project milestones (ProjectMilestoneFilter input).
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.and: Option<Vec<ProjectMilestoneFilter>>All sub-filters must match.
or: Option<Vec<ProjectMilestoneFilter>>At least one sub-filter must match.
id: Option<IdComparator>Filter by milestone ID.
name: Option<StringComparator>Filter by milestone name.
target_date: Option<DateComparator>Filter by target date.
Implementations§
Source§impl ProjectMilestoneFilter
impl ProjectMilestoneFilter
Sourcepub fn builder() -> ProjectMilestoneFilterBuilder
pub fn builder() -> ProjectMilestoneFilterBuilder
Create an instance of ProjectMilestoneFilter using the builder syntax
Trait Implementations§
Source§impl Clone for ProjectMilestoneFilter
impl Clone for ProjectMilestoneFilter
Source§fn clone(&self) -> ProjectMilestoneFilter
fn clone(&self) -> ProjectMilestoneFilter
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProjectMilestoneFilter
impl Debug for ProjectMilestoneFilter
Source§impl Default for ProjectMilestoneFilter
impl Default for ProjectMilestoneFilter
Source§fn default() -> ProjectMilestoneFilter
fn default() -> ProjectMilestoneFilter
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProjectMilestoneFilter
impl RefUnwindSafe for ProjectMilestoneFilter
impl Send for ProjectMilestoneFilter
impl Sync for ProjectMilestoneFilter
impl Unpin for ProjectMilestoneFilter
impl UnsafeUnpin for ProjectMilestoneFilter
impl UnwindSafe for ProjectMilestoneFilter
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