Struct forgejo_api::structs::IssueLabelsOption
source · pub struct IssueLabelsOption {
pub labels: Option<Vec<u64>>,
pub updated_at: Option<OffsetDateTime>,
}Expand description
IssueLabelsOption a collection of labels
Fields§
§labels: Option<Vec<u64>>list of label IDs
updated_at: Option<OffsetDateTime>Trait Implementations§
source§impl Clone for IssueLabelsOption
impl Clone for IssueLabelsOption
source§fn clone(&self) -> IssueLabelsOption
fn clone(&self) -> IssueLabelsOption
Returns a copy 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 IssueLabelsOption
impl Debug for IssueLabelsOption
source§impl<'de> Deserialize<'de> for IssueLabelsOption
impl<'de> Deserialize<'de> for IssueLabelsOption
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
source§impl PartialEq for IssueLabelsOption
impl PartialEq for IssueLabelsOption
source§fn eq(&self, other: &IssueLabelsOption) -> bool
fn eq(&self, other: &IssueLabelsOption) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for IssueLabelsOption
impl Serialize for IssueLabelsOption
impl StructuralPartialEq for IssueLabelsOption
Auto Trait Implementations§
impl Freeze for IssueLabelsOption
impl RefUnwindSafe for IssueLabelsOption
impl Send for IssueLabelsOption
impl Sync for IssueLabelsOption
impl Unpin for IssueLabelsOption
impl UnwindSafe for IssueLabelsOption
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