#[non_exhaustive]pub enum IntegrationResult {
Staged(StagedTopic),
Unstaged(Topic, UnstageReason),
AlreadyMerged(Topic),
AlreadyStaged(Topic),
Unmerged(Topic, MergeStatus),
}Expand description
Results from integrating a topic.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Staged(StagedTopic)
The topic is successfully staged into the integration branch.
Unstaged(Topic, UnstageReason)
The topic is kicked out of the integration branch.
AlreadyMerged(Topic)
The topic has already been merged to the integration branch.
AlreadyStaged(Topic)
👎Deprecated since 4.2.0: Unnecessary and unused.
The topic has already been merged to the stage.
Unmerged(Topic, MergeStatus)
The topic is not mergeable.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IntegrationResult
impl RefUnwindSafe for IntegrationResult
impl Send for IntegrationResult
impl Sync for IntegrationResult
impl Unpin for IntegrationResult
impl UnwindSafe for IntegrationResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more