pub struct CommitIndexResult {
pub oid: ObjectId,
pub tree: ObjectId,
pub updated_ref: String,
pub parent: Option<ObjectId>,
}Fields§
§oid: ObjectId§tree: ObjectId§updated_ref: String§parent: Option<ObjectId>Trait Implementations§
Source§impl Clone for CommitIndexResult
impl Clone for CommitIndexResult
Source§fn clone(&self) -> CommitIndexResult
fn clone(&self) -> CommitIndexResult
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 CommitIndexResult
impl Debug for CommitIndexResult
impl Eq for CommitIndexResult
Source§impl PartialEq for CommitIndexResult
impl PartialEq for CommitIndexResult
Source§fn eq(&self, other: &CommitIndexResult) -> bool
fn eq(&self, other: &CommitIndexResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CommitIndexResult
Auto Trait Implementations§
impl Freeze for CommitIndexResult
impl RefUnwindSafe for CommitIndexResult
impl Send for CommitIndexResult
impl Sync for CommitIndexResult
impl Unpin for CommitIndexResult
impl UnsafeUnpin for CommitIndexResult
impl UnwindSafe for CommitIndexResult
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