pub struct ProjectLabelUpdateInput {
pub name: Option<String>,
pub description: Option<String>,
pub parent_id: Option<String>,
pub color: Option<String>,
pub is_group: Option<bool>,
pub retired_at: Option<DateTime<Utc>>,
}Fields§
§name: Option<String>The name of the label.
description: Option<String>The description of the label.
parent_id: Option<String>The identifier of the parent label.
color: Option<String>The color of the label.
is_group: Option<bool>Whether the label is a group.
retired_at: Option<DateTime<Utc>>When the label was retired.
Trait Implementations§
Source§impl Clone for ProjectLabelUpdateInput
impl Clone for ProjectLabelUpdateInput
Source§fn clone(&self) -> ProjectLabelUpdateInput
fn clone(&self) -> ProjectLabelUpdateInput
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 ProjectLabelUpdateInput
impl Debug for ProjectLabelUpdateInput
Source§impl Default for ProjectLabelUpdateInput
impl Default for ProjectLabelUpdateInput
Source§fn default() -> ProjectLabelUpdateInput
fn default() -> ProjectLabelUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectLabelUpdateInput
impl<'de> Deserialize<'de> for ProjectLabelUpdateInput
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 ProjectLabelUpdateInput
impl RefUnwindSafe for ProjectLabelUpdateInput
impl Send for ProjectLabelUpdateInput
impl Sync for ProjectLabelUpdateInput
impl Unpin for ProjectLabelUpdateInput
impl UnwindSafe for ProjectLabelUpdateInput
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