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