pub struct IssueLabelCreateInput {
pub id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub color: Option<String>,
pub parent_id: Option<String>,
pub team_id: Option<String>,
pub is_group: Option<bool>,
pub retired_at: Option<DateTime<Utc>>,
}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 label.
description: Option<String>The description of the label.
color: Option<String>The color of the label.
parent_id: Option<String>The identifier of the parent label.
team_id: Option<String>The team associated with the label. If not given, the label will be associated with the entire workspace.
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 IssueLabelCreateInput
impl Clone for IssueLabelCreateInput
Source§fn clone(&self) -> IssueLabelCreateInput
fn clone(&self) -> IssueLabelCreateInput
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 IssueLabelCreateInput
impl Debug for IssueLabelCreateInput
Source§impl Default for IssueLabelCreateInput
impl Default for IssueLabelCreateInput
Source§fn default() -> IssueLabelCreateInput
fn default() -> IssueLabelCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IssueLabelCreateInput
impl<'de> Deserialize<'de> for IssueLabelCreateInput
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 IssueLabelCreateInput
impl RefUnwindSafe for IssueLabelCreateInput
impl Send for IssueLabelCreateInput
impl Sync for IssueLabelCreateInput
impl Unpin for IssueLabelCreateInput
impl UnwindSafe for IssueLabelCreateInput
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