pub struct IssueLabelUpdateInput {
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 IssueLabelUpdateInput
impl Clone for IssueLabelUpdateInput
Source§fn clone(&self) -> IssueLabelUpdateInput
fn clone(&self) -> IssueLabelUpdateInput
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 IssueLabelUpdateInput
impl Debug for IssueLabelUpdateInput
Source§impl Default for IssueLabelUpdateInput
impl Default for IssueLabelUpdateInput
Source§fn default() -> IssueLabelUpdateInput
fn default() -> IssueLabelUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IssueLabelUpdateInput
impl<'de> Deserialize<'de> for IssueLabelUpdateInput
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 IssueLabelUpdateInput
impl RefUnwindSafe for IssueLabelUpdateInput
impl Send for IssueLabelUpdateInput
impl Sync for IssueLabelUpdateInput
impl Unpin for IssueLabelUpdateInput
impl UnwindSafe for IssueLabelUpdateInput
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