pub struct RoadmapToProjectCreateInput {
pub id: Option<String>,
pub project_id: Option<String>,
pub roadmap_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.
project_id: Option<String>The identifier of the project.
roadmap_id: Option<String>The identifier of the roadmap.
sort_order: Option<f64>The sort order for the project within its organization.
Trait Implementations§
Source§impl Clone for RoadmapToProjectCreateInput
impl Clone for RoadmapToProjectCreateInput
Source§fn clone(&self) -> RoadmapToProjectCreateInput
fn clone(&self) -> RoadmapToProjectCreateInput
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 RoadmapToProjectCreateInput
impl Debug for RoadmapToProjectCreateInput
Source§impl Default for RoadmapToProjectCreateInput
impl Default for RoadmapToProjectCreateInput
Source§fn default() -> RoadmapToProjectCreateInput
fn default() -> RoadmapToProjectCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RoadmapToProjectCreateInput
impl<'de> Deserialize<'de> for RoadmapToProjectCreateInput
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 RoadmapToProjectCreateInput
impl RefUnwindSafe for RoadmapToProjectCreateInput
impl Send for RoadmapToProjectCreateInput
impl Sync for RoadmapToProjectCreateInput
impl Unpin for RoadmapToProjectCreateInput
impl UnwindSafe for RoadmapToProjectCreateInput
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