[][src]Struct git_topic_stage::Topic

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.

Topics contain additional information so that they may be easily identified and so that the commit messages are useful to humans as well.

Fields

commit: CommitId

The HEAD commit of the topic branch.

author: Identity

The author of the stage request.

stamp: DateTime<Utc>

When the stage request occurred.

id: u64

An ID for the topic.

name: String

The name of the topic.

url: String

The URL of the topic.

Methods

impl Topic[src]

pub fn new<N, U>(
    commit: CommitId,
    author: Identity,
    stamp: DateTime<Utc>,
    id: u64,
    name: N,
    url: U
) -> Self where
    N: Into<String>,
    U: Into<String>, 
[src]

Create a topic.

The ID must be unique across all topics.

Trait Implementations

impl Clone for Topic[src]

impl PartialEq<Topic> for Topic[src]

impl Display for Topic[src]

impl Debug for Topic[src]

Auto Trait Implementations

impl Send for Topic

impl Sync for Topic

impl Unpin for Topic

impl UnwindSafe for Topic

impl RefUnwindSafe for Topic

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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> Borrow<T> for T where
    T: ?Sized
[src]

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

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