Enum git_topic_stage::OldTopicRemoval [] [src]

pub enum OldTopicRemoval {
    Obsoleted {
        old_merge: StagedTopic,
        replacement: Option<StagedTopic>,
    },
    Removed(StagedTopic),
}

Reasons an old topic was removed from the stage.

Variants

The topic branch has been obsoleted by an update.

Fields of Obsoleted

The old topic, as staged.

The staged topic branch which has replaced the old topic branch.

The topic branch has been removed, without replacement, from the stage.

Methods

impl OldTopicRemoval
[src]

The topic branch which was removed.

Deprecated since 1.1.0

: renamed to topic()

The topic branch which was removed.

Trait Implementations

impl Debug for OldTopicRemoval
[src]

Formats the value using the given formatter.