pub enum BlockerType {
ResourceUnavailable {
resource: String,
},
DependencyBlocked {
goal: GoalId,
},
DeadlineMiss {
deadline: Timestamp,
},
ExternalEvent {
event: String,
},
SkillGap {
skill: String,
},
ApprovalPending {
approver: StakeholderId,
},
TechnicalDebt {
description: String,
},
Unknown {
signals: Vec<String>,
},
}Variants§
DependencyBlocked
DeadlineMiss
ExternalEvent
SkillGap
ApprovalPending
Fields
§
approver: StakeholderIdTechnicalDebt
Unknown
Trait Implementations§
Source§impl Clone for BlockerType
impl Clone for BlockerType
Source§fn clone(&self) -> BlockerType
fn clone(&self) -> BlockerType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BlockerType
impl Debug for BlockerType
Source§impl<'de> Deserialize<'de> for BlockerType
impl<'de> Deserialize<'de> for BlockerType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BlockerType
impl RefUnwindSafe for BlockerType
impl Send for BlockerType
impl Sync for BlockerType
impl Unpin for BlockerType
impl UnsafeUnpin for BlockerType
impl UnwindSafe for BlockerType
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