[][src]Struct git_checks::Topic

pub struct Topic {
    pub base: CommitId,
    pub sha1: CommitId,
    pub diffs: Vec<DiffInfo>,
    // some fields omitted
}

Representation of a topic with information useful for commit checks.

Fields

base: CommitId

The SHA1 of the base commit.

sha1: CommitId

The SHA1 of the commit.

diffs: Vec<DiffInfo>

Information about files that changed in this commit.

Methods

impl Topic[src]

pub fn new(ctx: &GitContext, base: &CommitId, sha1: &CommitId) -> Result<Self>[src]

Create a new commit from the given context for the SHA1.

pub fn file_patch<P>(&self, path: P) -> Result<String> where
    P: AsRef<OsStr>, 
[src]

Get the patch difference for the given path.

Trait Implementations

impl Content for Topic[src]

fn modified_files(&self) -> Vec<&FileName>[src]

Return a vector of files modified in a diff. Read more

impl Debug for Topic[src]

Auto Trait Implementations

impl Send for Topic

impl Unpin for Topic

impl Sync for Topic

impl UnwindSafe for Topic

impl RefUnwindSafe for Topic

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]