pub struct InitiativeToProjectCreateInput {
pub id: Option<String>,
pub project_id: Option<String>,
pub initiative_id: Option<String>,
pub sort_order: Option<f64>,
}Expand description
The properties of the initiativeToProject to create.
Fields§
§id: Option<String>The identifier in UUID v4 format. If none is provided, the backend will generate one.
project_id: Option<String>The identifier of the project.
initiative_id: Option<String>The identifier of the initiative.
sort_order: Option<f64>The sort order for the project within its organization.
Trait Implementations§
Source§impl Clone for InitiativeToProjectCreateInput
impl Clone for InitiativeToProjectCreateInput
Source§fn clone(&self) -> InitiativeToProjectCreateInput
fn clone(&self) -> InitiativeToProjectCreateInput
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 Default for InitiativeToProjectCreateInput
impl Default for InitiativeToProjectCreateInput
Source§fn default() -> InitiativeToProjectCreateInput
fn default() -> InitiativeToProjectCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InitiativeToProjectCreateInput
impl<'de> Deserialize<'de> for InitiativeToProjectCreateInput
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 InitiativeToProjectCreateInput
impl RefUnwindSafe for InitiativeToProjectCreateInput
impl Send for InitiativeToProjectCreateInput
impl Sync for InitiativeToProjectCreateInput
impl Unpin for InitiativeToProjectCreateInput
impl UnwindSafe for InitiativeToProjectCreateInput
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