pub struct Commit {
pub sha: String,
pub url: String,
pub author: Author,
pub committer: Committer,
pub message: String,
pub tree: Tree,
pub parents: Vec<Parent>,
}
Fields
sha: String
url: String
author: Author
committer: Committer
message: String
tree: Tree
parents: Vec<Parent>
Trait Implementations
Formats the value using the given formatter.
fn eq(&self, __arg_0: &Commit) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Commit) -> bool
This method tests for !=
.