pub enum BranchCleanupProof {
MergedPullRequest(MergedPullRequest),
AncestorOfDefaultBranch {
remote: RemoteName,
default_branch: BranchName,
default_oid: String,
},
}Variants§
MergedPullRequest(MergedPullRequest)
AncestorOfDefaultBranch
Trait Implementations§
Source§impl Clone for BranchCleanupProof
impl Clone for BranchCleanupProof
Source§fn clone(&self) -> BranchCleanupProof
fn clone(&self) -> BranchCleanupProof
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 BranchCleanupProof
impl Debug for BranchCleanupProof
impl Eq for BranchCleanupProof
Source§impl PartialEq for BranchCleanupProof
impl PartialEq for BranchCleanupProof
Source§fn eq(&self, other: &BranchCleanupProof) -> bool
fn eq(&self, other: &BranchCleanupProof) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BranchCleanupProof
Auto Trait Implementations§
impl Freeze for BranchCleanupProof
impl RefUnwindSafe for BranchCleanupProof
impl Send for BranchCleanupProof
impl Sync for BranchCleanupProof
impl Unpin for BranchCleanupProof
impl UnsafeUnpin for BranchCleanupProof
impl UnwindSafe for BranchCleanupProof
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