pub struct ProjectSortInput {
pub name: Option<Box<ProjectNameSort>>,
pub status: Option<Box<ProjectStatusSort>>,
pub priority: Option<Box<ProjectPrioritySort>>,
pub manual: Option<Box<ProjectManualSort>>,
pub target_date: Option<Box<TargetDateSort>>,
pub start_date: Option<Box<StartDateSort>>,
pub created_at: Option<Box<ProjectCreatedAtSort>>,
pub updated_at: Option<Box<ProjectUpdatedAtSort>>,
pub health: Option<Box<ProjectHealthSort>>,
pub lead: Option<Box<ProjectLeadSort>>,
}Expand description
Project sorting options.
Fields§
§name: Option<Box<ProjectNameSort>>Sort by project name
status: Option<Box<ProjectStatusSort>>Sort by project status
priority: Option<Box<ProjectPrioritySort>>Sort by project priority
manual: Option<Box<ProjectManualSort>>Sort by manual order
target_date: Option<Box<TargetDateSort>>Sort by project target date
start_date: Option<Box<StartDateSort>>Sort by project start date
created_at: Option<Box<ProjectCreatedAtSort>>Sort by project creation date
updated_at: Option<Box<ProjectUpdatedAtSort>>Sort by project update date
health: Option<Box<ProjectHealthSort>>Sort by project health status.
lead: Option<Box<ProjectLeadSort>>Sort by project lead name.
Trait Implementations§
Source§impl Clone for ProjectSortInput
impl Clone for ProjectSortInput
Source§fn clone(&self) -> ProjectSortInput
fn clone(&self) -> ProjectSortInput
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 ProjectSortInput
impl Debug for ProjectSortInput
Source§impl Default for ProjectSortInput
impl Default for ProjectSortInput
Source§fn default() -> ProjectSortInput
fn default() -> ProjectSortInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectSortInput
impl<'de> Deserialize<'de> for ProjectSortInput
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 ProjectSortInput
impl RefUnwindSafe for ProjectSortInput
impl Send for ProjectSortInput
impl Sync for ProjectSortInput
impl Unpin for ProjectSortInput
impl UnwindSafe for ProjectSortInput
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