Enum git_topic_stage::OldTopicRemoval[][src]

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

Reasons an old topic was removed from the stage.

Variants

Obsoleted

Fields

old_merge: StagedTopic

The old topic, as staged.

replacement: Option<StagedTopic>

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

The topic branch has been obsoleted by an update.

Removed(StagedTopic)

Tuple Fields

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

Implementations

The topic branch which was removed.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.