pub enum PackRefDecision {
Pack {
peeled: Option<ObjectId>,
},
Skip,
}Variants§
Trait Implementations§
Source§impl Clone for PackRefDecision
impl Clone for PackRefDecision
Source§fn clone(&self) -> PackRefDecision
fn clone(&self) -> PackRefDecision
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 moreimpl Copy for PackRefDecision
Source§impl Debug for PackRefDecision
impl Debug for PackRefDecision
impl Eq for PackRefDecision
Source§impl PartialEq for PackRefDecision
impl PartialEq for PackRefDecision
Source§fn eq(&self, other: &PackRefDecision) -> bool
fn eq(&self, other: &PackRefDecision) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PackRefDecision
Auto Trait Implementations§
impl Freeze for PackRefDecision
impl RefUnwindSafe for PackRefDecision
impl Send for PackRefDecision
impl Sync for PackRefDecision
impl Unpin for PackRefDecision
impl UnsafeUnpin for PackRefDecision
impl UnwindSafe for PackRefDecision
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