pub struct LabelChange {
pub added: Vec<String>,
pub removed: Vec<String>,
}Expand description
Label changes between two versions.
Fields§
§added: Vec<String>Labels in to but not from.
removed: Vec<String>Labels in from but not to.
Trait Implementations§
Source§impl Clone for LabelChange
impl Clone for LabelChange
Source§fn clone(&self) -> LabelChange
fn clone(&self) -> LabelChange
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LabelChange
impl Debug for LabelChange
Source§impl Default for LabelChange
impl Default for LabelChange
Source§fn default() -> LabelChange
fn default() -> LabelChange
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LabelChange
impl RefUnwindSafe for LabelChange
impl Send for LabelChange
impl Sync for LabelChange
impl Unpin for LabelChange
impl UnsafeUnpin for LabelChange
impl UnwindSafe for LabelChange
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