pub struct LabelDependency {
pub from_label: String,
pub to_label: String,
pub issue_count: usize,
pub issue_ids: Vec<String>,
pub blocking_pairs: Vec<BlockingPair>,
}Fields§
§from_label: String§to_label: String§issue_count: usize§issue_ids: Vec<String>§blocking_pairs: Vec<BlockingPair>Trait Implementations§
Source§impl Clone for LabelDependency
impl Clone for LabelDependency
Source§fn clone(&self) -> LabelDependency
fn clone(&self) -> LabelDependency
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 LabelDependency
impl Debug for LabelDependency
Auto Trait Implementations§
impl Freeze for LabelDependency
impl RefUnwindSafe for LabelDependency
impl Send for LabelDependency
impl Sync for LabelDependency
impl Unpin for LabelDependency
impl UnsafeUnpin for LabelDependency
impl UnwindSafe for LabelDependency
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