Skip to main content

NullableProjectFilter

Struct NullableProjectFilter 

Source
pub struct NullableProjectFilter {
Show 42 fields pub id: Option<Box<IDComparator>>, pub created_at: Option<Box<DateComparator>>, pub updated_at: Option<Box<DateComparator>>, pub name: Option<Box<StringComparator>>, pub slug_id: Option<Box<StringComparator>>, pub state: Option<Box<StringComparator>>, pub status: Option<Box<ProjectStatusFilter>>, pub priority: Option<Box<NullableNumberComparator>>, pub labels: Option<Box<ProjectLabelCollectionFilter>>, pub searchable_content: Option<Box<ContentComparator>>, pub started_at: Option<Box<NullableDateComparator>>, pub completed_at: Option<Box<NullableDateComparator>>, pub canceled_at: Option<Box<NullableDateComparator>>, pub start_date: Option<Box<NullableDateComparator>>, pub target_date: Option<Box<NullableDateComparator>>, pub health: Option<Box<StringComparator>>, pub health_with_age: Option<Box<StringComparator>>, pub activity_type: Option<Box<StringComparator>>, pub has_related_relations: Option<Box<RelationExistsComparator>>, pub has_depended_on_by_relations: Option<Box<RelationExistsComparator>>, pub has_depends_on_relations: Option<Box<RelationExistsComparator>>, pub has_blocked_by_relations: Option<Box<RelationExistsComparator>>, pub has_blocking_relations: Option<Box<RelationExistsComparator>>, pub has_violated_relations: Option<Box<RelationExistsComparator>>, pub project_updates: Option<Box<ProjectUpdatesCollectionFilter>>, pub creator: Option<Box<UserFilter>>, pub lead: Option<Box<NullableUserFilter>>, pub members: Option<Box<UserCollectionFilter>>, pub issues: Option<Box<IssueCollectionFilter>>, pub roadmaps: Option<Box<RoadmapCollectionFilter>>, pub initiatives: Option<Box<InitiativeCollectionFilter>>, pub project_milestones: Option<Box<ProjectMilestoneCollectionFilter>>, pub completed_project_milestones: Option<Box<ProjectMilestoneCollectionFilter>>, pub next_project_milestone: Option<Box<ProjectMilestoneFilter>>, pub accessible_teams: Option<Box<TeamCollectionFilter>>, pub last_applied_template: Option<Box<NullableTemplateFilter>>, pub needs: Option<Box<CustomerNeedCollectionFilter>>, pub customer_count: Option<Box<NumberComparator>>, pub customer_important_count: Option<Box<NumberComparator>>, pub null: Option<bool>, pub and: Option<Vec<Box<NullableProjectFilter>>>, pub or: Option<Vec<Box<NullableProjectFilter>>>,
}
Expand description

Project 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 name.

§slug_id: Option<Box<StringComparator>>

Comparator for the project slug ID.

§state: Option<Box<StringComparator>>

DEPRECATED Comparator for the project state.

§status: Option<Box<ProjectStatusFilter>>

Filters that the project’s status must satisfy.

§priority: Option<Box<NullableNumberComparator>>

Comparator for the projects priority.

§labels: Option<Box<ProjectLabelCollectionFilter>>

Filters that project labels must satisfy.

§searchable_content: Option<Box<ContentComparator>>

Internal Comparator for the project’s content.

§started_at: Option<Box<NullableDateComparator>>

Comparator for the project started date (when it was moved to an “In Progress” status).

§completed_at: Option<Box<NullableDateComparator>>

Comparator for the project completion date.

§canceled_at: Option<Box<NullableDateComparator>>

Comparator for the project cancelation date.

§start_date: Option<Box<NullableDateComparator>>

Comparator for the project start date.

§target_date: Option<Box<NullableDateComparator>>

Comparator for the project target date.

§health: Option<Box<StringComparator>>

Comparator for the project health: onTrack, atRisk, offTrack

§health_with_age: Option<Box<StringComparator>>

Comparator for the project health (with age): onTrack, atRisk, offTrack, outdated, noUpdate

§activity_type: Option<Box<StringComparator>>

ALPHA Comparator for the project activity type: buzzin, active, some, none

§has_related_relations: Option<Box<RelationExistsComparator>>

Comparator for filtering projects with relations.

§has_depended_on_by_relations: Option<Box<RelationExistsComparator>>

Deprecated Comparator for filtering projects which this is depended on by.

§has_depends_on_relations: Option<Box<RelationExistsComparator>>

DeprecatedComparator for filtering projects which this depends on.

§has_blocked_by_relations: Option<Box<RelationExistsComparator>>

Comparator for filtering projects which are blocked.

§has_blocking_relations: Option<Box<RelationExistsComparator>>

Comparator for filtering projects which are blocking.

§has_violated_relations: Option<Box<RelationExistsComparator>>

Comparator for filtering projects with violated dependencies.

§project_updates: Option<Box<ProjectUpdatesCollectionFilter>>

Comparator for the project updates.

§creator: Option<Box<UserFilter>>

Filters that the projects creator must satisfy.

§lead: Option<Box<NullableUserFilter>>

Filters that the projects lead must satisfy.

§members: Option<Box<UserCollectionFilter>>

Filters that the projects members must satisfy.

§issues: Option<Box<IssueCollectionFilter>>

Filters that the projects issues must satisfy.

§roadmaps: Option<Box<RoadmapCollectionFilter>>

Filters that the projects roadmaps must satisfy.

§initiatives: Option<Box<InitiativeCollectionFilter>>

Filters that the projects initiatives must satisfy.

§project_milestones: Option<Box<ProjectMilestoneCollectionFilter>>

Filters that the project’s milestones must satisfy.

§completed_project_milestones: Option<Box<ProjectMilestoneCollectionFilter>>

Filters that the project’s completed milestones must satisfy.

§next_project_milestone: Option<Box<ProjectMilestoneFilter>>

Filters that the project’s next milestone must satisfy.

§accessible_teams: Option<Box<TeamCollectionFilter>>

Filters that the project’s team must satisfy.

§last_applied_template: Option<Box<NullableTemplateFilter>>

Filters that the last applied template must satisfy.

§needs: Option<Box<CustomerNeedCollectionFilter>>

Filters that the project’s customer needs must satisfy.

§customer_count: Option<Box<NumberComparator>>

Count of customers

§customer_important_count: Option<Box<NumberComparator>>

Count of important customers

§null: Option<bool>

Filter based on the existence of the relation.

§and: Option<Vec<Box<NullableProjectFilter>>>

Compound filters, all of which need to be matched by the project.

§or: Option<Vec<Box<NullableProjectFilter>>>

Compound filters, one of which need to be matched by the project.

Trait Implementations§

Source§

impl Clone for NullableProjectFilter

Source§

fn clone(&self) -> NullableProjectFilter

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for NullableProjectFilter

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for NullableProjectFilter

Source§

fn default() -> NullableProjectFilter

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for NullableProjectFilter

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for NullableProjectFilter

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> FieldCompatible<T> for T