pub struct IssueLabelsOption {
pub labels: Option<Vec<Value>>,
pub updated_at: Option<OffsetDateTime>,
}Expand description
IssueLabelsOption a collection of labels
Fields§
§labels: Option<Vec<Value>>Labels can be a list of integers representing label IDs
or a list of strings representing label names
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 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 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§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