[][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 Sync for Topic

Blanket Implementations

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

impl<T> From for T
[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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