Enum git_pack::data::ResolvedBase
source · Expand description
A return value of a resolve function, which given an ObjectId
determines where an object can be found.
Variants
InPack(Entry)
Indicate an object is within this pack, at the given entry, and thus can be looked up locally.
OutOfPack
Indicates the object of kind
was found outside of the pack, and its data was written into an output
vector which now has a length of end
.
Trait Implementations
sourceimpl Clone for ResolvedBase
impl Clone for ResolvedBase
sourcefn clone(&self) -> ResolvedBase
fn clone(&self) -> ResolvedBase
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ResolvedBase
impl Debug for ResolvedBase
sourceimpl<'de> Deserialize<'de> for ResolvedBase
impl<'de> Deserialize<'de> for ResolvedBase
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Hash for ResolvedBase
impl Hash for ResolvedBase
sourceimpl Ord for ResolvedBase
impl Ord for ResolvedBase
sourcefn cmp(&self, other: &ResolvedBase) -> Ordering
fn cmp(&self, other: &ResolvedBase) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<ResolvedBase> for ResolvedBase
impl PartialEq<ResolvedBase> for ResolvedBase
sourcefn eq(&self, other: &ResolvedBase) -> bool
fn eq(&self, other: &ResolvedBase) -> bool
sourceimpl PartialOrd<ResolvedBase> for ResolvedBase
impl PartialOrd<ResolvedBase> for ResolvedBase
sourcefn partial_cmp(&self, other: &ResolvedBase) -> Option<Ordering>
fn partial_cmp(&self, other: &ResolvedBase) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl Serialize for ResolvedBase
impl Serialize for ResolvedBase
impl Eq for ResolvedBase
impl StructuralEq for ResolvedBase
impl StructuralPartialEq for ResolvedBase
Auto Trait Implementations
impl RefUnwindSafe for ResolvedBase
impl Send for ResolvedBase
impl Sync for ResolvedBase
impl Unpin for ResolvedBase
impl UnwindSafe for ResolvedBase
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more