Struct git2::ReflogEntry
[−]
[src]
pub struct ReflogEntry<'reflog> { /* fields omitted */ }An entry inside the reflog of a repository
Methods
impl<'reflog> ReflogEntry<'reflog>[src]
fn committer(&self) -> Signature[src]
Get the committer of this entry
fn id_new(&self) -> Oid[src]
Get the new oid
fn id_old(&self) -> Oid[src]
Get the old oid
fn message(&self) -> Option<&str>[src]
Get the log message, returning None on invalid UTF-8.
fn message_bytes(&self) -> Option<&[u8]>[src]
Get the log message as a byte array.