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 more
sourceimpl 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
sourceimpl PartialEq<ResolvedBase> for ResolvedBase
impl PartialEq<ResolvedBase> for ResolvedBase
sourcefn eq(&self, other: &ResolvedBase) -> bool
fn eq(&self, other: &ResolvedBase) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ResolvedBase) -> bool
fn ne(&self, other: &ResolvedBase) -> bool
This method tests for !=
.
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>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
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 more
sourceimpl 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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more