pub struct BranchInfo {
pub spec_id: String,
pub spec_title: Option<String>,
pub status: BranchStatus,
pub commit_count: usize,
pub criteria_checked: usize,
pub criteria_total: usize,
}Expand description
Information about a branch for selective merge display
Fields§
§spec_id: String§spec_title: Option<String>§status: BranchStatus§commit_count: usize§criteria_checked: usize§criteria_total: usizeTrait Implementations§
Source§impl Clone for BranchInfo
impl Clone for BranchInfo
Source§fn clone(&self) -> BranchInfo
fn clone(&self) -> BranchInfo
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 moreAuto Trait Implementations§
impl Freeze for BranchInfo
impl RefUnwindSafe for BranchInfo
impl Send for BranchInfo
impl Sync for BranchInfo
impl Unpin for BranchInfo
impl UnwindSafe for BranchInfo
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