Struct git_topic_stage::Topic [] [src]

pub struct Topic {
    pub commit: CommitId,
    pub author: Identity,
    pub stamp: DateTime<UTC>,
    pub id: u64,
    pub name: String,
    pub url: String,
}

A branch for the stager.

A separate type is used so that topic branches cannot be mixed up with other commits.

Fields

The HEAD commit of the topic branch.

The author of the stage request.

The timestamp for the request to be staged.

An ID for the topic.

The name of the topic.

The name of the topic.

Methods

impl Topic
[src]

The HEAD commit of the topic branch.

Trait Implementations

impl Debug for Topic
[src]

Formats the value using the given formatter.

impl Clone for Topic
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for Topic
[src]

Formats the value using the given formatter.

impl PartialEq for Topic
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.