pub struct InitiativeSortInput {
pub name: Option<Box<InitiativeNameSort>>,
pub manual: Option<Box<InitiativeManualSort>>,
pub updated_at: Option<Box<InitiativeUpdatedAtSort>>,
pub created_at: Option<Box<InitiativeCreatedAtSort>>,
pub target_date: Option<Box<InitiativeTargetDateSort>>,
pub health: Option<Box<InitiativeHealthSort>>,
pub health_updated_at: Option<Box<InitiativeHealthUpdatedAtSort>>,
pub owner: Option<Box<InitiativeOwnerSort>>,
}Expand description
Initiative sorting options.
Fields§
§name: Option<Box<InitiativeNameSort>>Sort by initiative name.
manual: Option<Box<InitiativeManualSort>>Sort by manual order.
updated_at: Option<Box<InitiativeUpdatedAtSort>>Sort by initiative update date.
created_at: Option<Box<InitiativeCreatedAtSort>>Sort by initiative creation date.
target_date: Option<Box<InitiativeTargetDateSort>>Sort by initiative target date.
health: Option<Box<InitiativeHealthSort>>Sort by initiative health status.
health_updated_at: Option<Box<InitiativeHealthUpdatedAtSort>>Sort by initiative health update date.
owner: Option<Box<InitiativeOwnerSort>>Sort by initiative owner name.
Trait Implementations§
Source§impl Clone for InitiativeSortInput
impl Clone for InitiativeSortInput
Source§fn clone(&self) -> InitiativeSortInput
fn clone(&self) -> InitiativeSortInput
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 InitiativeSortInput
impl Debug for InitiativeSortInput
Source§impl Default for InitiativeSortInput
impl Default for InitiativeSortInput
Source§fn default() -> InitiativeSortInput
fn default() -> InitiativeSortInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InitiativeSortInput
impl<'de> Deserialize<'de> for InitiativeSortInput
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 InitiativeSortInput
impl RefUnwindSafe for InitiativeSortInput
impl Send for InitiativeSortInput
impl Sync for InitiativeSortInput
impl Unpin for InitiativeSortInput
impl UnwindSafe for InitiativeSortInput
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