Enum git2::ReferenceType
source · [−]pub enum ReferenceType {
Direct,
Symbolic,
}
Expand description
An enumeration of all possile kinds of references.
Variants
Direct
A reference which points at an object id.
Symbolic
A reference which points at another reference.
Implementations
sourceimpl ReferenceType
impl ReferenceType
sourcepub fn from_raw(raw: git_reference_t) -> Option<ReferenceType>
pub fn from_raw(raw: git_reference_t) -> Option<ReferenceType>
Convert a raw git_reference_t to a ReferenceType.
Trait Implementations
sourceimpl Clone for ReferenceType
impl Clone for ReferenceType
sourcefn clone(&self) -> ReferenceType
fn clone(&self) -> ReferenceType
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 ReferenceType
impl Debug for ReferenceType
sourceimpl Display for ReferenceType
impl Display for ReferenceType
sourceimpl PartialEq<ReferenceType> for ReferenceType
impl PartialEq<ReferenceType> for ReferenceType
impl Copy for ReferenceType
impl Eq for ReferenceType
impl StructuralEq for ReferenceType
impl StructuralPartialEq for ReferenceType
Auto Trait Implementations
impl RefUnwindSafe for ReferenceType
impl Send for ReferenceType
impl Sync for ReferenceType
impl Unpin for ReferenceType
impl UnwindSafe for ReferenceType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
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.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more