Struct Commit

Source
pub struct Commit {
    pub hash: Hash,
    pub tree: Hash,
    pub parents: Vec<Hash>,
    /* private fields */
}
Expand description

A parsed git commit

§Example

// The initial commit of this project's git repository
let repository  = Repository::from_path(".").unwrap();
let hcommit     = commit::Hash::from_str("02c4f0499bcf979ad86d9ef5b61ffc51b1394bef").unwrap();
let htree       = tree  ::Hash::from_str("88824f5315abd219d2f6f5f68fe69f32386ffc00").unwrap();

let commit = Commit::read(&repository, &hcommit).unwrap();
assert_eq!(commit.hash, hcommit);
assert_eq!(commit.tree, htree);
assert_eq!(commit.parents.len(), 0); // initial commit

Fields§

§hash: Hash

The Hash representing this Commit

§tree: Hash

The Hash referencing the root directory / Tree of this Commit

§parents: Vec<Hash>

The Hashes of the 0 or more parent Commits of this Commit

Initial Commits have 0 parents. Merge Commits have multiple parents. Vanilla boring Commits have 1 parent, the previous commit.

Implementations§

Source§

impl Commit

Source

pub fn read(repository: &Repository, hash: &Hash) -> Result<Self>

Read a local Commit from a given Repository

Auto Trait Implementations§

§

impl Freeze for Commit

§

impl RefUnwindSafe for Commit

§

impl Send for Commit

§

impl Sync for Commit

§

impl Unpin for Commit

§

impl UnwindSafe for Commit

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.