pub enum EdgeKind {
Direct {
succs: Vec<Ident>,
on_failure: Option<Vec<Ident>>,
},
Composite(Vec<CompositeArm>),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EdgeKind
impl RefUnwindSafe for EdgeKind
impl !Send for EdgeKind
impl !Sync for EdgeKind
impl Unpin for EdgeKind
impl UnwindSafe for EdgeKind
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