pub struct RoadmapUpdateInput {
pub name: Option<String>,
pub description: Option<String>,
pub owner_id: Option<String>,
pub sort_order: Option<f64>,
pub color: Option<String>,
}Fields§
§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 RoadmapUpdateInput
impl Clone for RoadmapUpdateInput
Source§fn clone(&self) -> RoadmapUpdateInput
fn clone(&self) -> RoadmapUpdateInput
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 RoadmapUpdateInput
impl Debug for RoadmapUpdateInput
Source§impl Default for RoadmapUpdateInput
impl Default for RoadmapUpdateInput
Source§fn default() -> RoadmapUpdateInput
fn default() -> RoadmapUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RoadmapUpdateInput
impl<'de> Deserialize<'de> for RoadmapUpdateInput
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 RoadmapUpdateInput
impl RefUnwindSafe for RoadmapUpdateInput
impl Send for RoadmapUpdateInput
impl Sync for RoadmapUpdateInput
impl Unpin for RoadmapUpdateInput
impl UnwindSafe for RoadmapUpdateInput
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