pub struct BranchCleanupCandidate {
pub branch: BranchName,
pub source_oid: String,
pub upstream_remote: RemoteName,
pub upstream_oid: Option<String>,
pub proof: BranchCleanupProof,
}Fields§
§branch: BranchName§source_oid: String§upstream_remote: RemoteName§upstream_oid: Option<String>§proof: BranchCleanupProofTrait Implementations§
Source§impl Clone for BranchCleanupCandidate
impl Clone for BranchCleanupCandidate
Source§fn clone(&self) -> BranchCleanupCandidate
fn clone(&self) -> BranchCleanupCandidate
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 BranchCleanupCandidate
impl Debug for BranchCleanupCandidate
impl Eq for BranchCleanupCandidate
Source§impl PartialEq for BranchCleanupCandidate
impl PartialEq for BranchCleanupCandidate
Source§fn eq(&self, other: &BranchCleanupCandidate) -> bool
fn eq(&self, other: &BranchCleanupCandidate) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BranchCleanupCandidate
Auto Trait Implementations§
impl Freeze for BranchCleanupCandidate
impl RefUnwindSafe for BranchCleanupCandidate
impl Send for BranchCleanupCandidate
impl Sync for BranchCleanupCandidate
impl Unpin for BranchCleanupCandidate
impl UnsafeUnpin for BranchCleanupCandidate
impl UnwindSafe for BranchCleanupCandidate
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