pub struct RoadmapCreateInput {
pub id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub owner_id: Option<String>,
pub sort_order: Option<f64>,
pub color: Option<String>,
}Fields§
§id: Option<String>The identifier in UUID v4 format. If none is provided, the backend will generate one.
name: Option<String>The name of the roadmap.
description: Option<String>The description of the roadmap.
owner_id: Option<String>The owner of the roadmap.
sort_order: Option<f64>The sort order of the roadmap within the organization.
color: Option<String>The roadmap’s color.
Trait Implementations§
Source§impl Clone for RoadmapCreateInput
impl Clone for RoadmapCreateInput
Source§fn clone(&self) -> RoadmapCreateInput
fn clone(&self) -> RoadmapCreateInput
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 RoadmapCreateInput
impl Debug for RoadmapCreateInput
Source§impl Default for RoadmapCreateInput
impl Default for RoadmapCreateInput
Source§fn default() -> RoadmapCreateInput
fn default() -> RoadmapCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RoadmapCreateInput
impl<'de> Deserialize<'de> for RoadmapCreateInput
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 RoadmapCreateInput
impl RefUnwindSafe for RoadmapCreateInput
impl Send for RoadmapCreateInput
impl Sync for RoadmapCreateInput
impl Unpin for RoadmapCreateInput
impl UnwindSafe for RoadmapCreateInput
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