pub enum Value {
Direct(DirectValue),
Branched(Vec<(BranchSpec, DirectValue)>),
}
Expand description
Any right-hand-side value in a workflow file.
Variants§
Direct(DirectValue)
Non-branching value
Branched(Vec<(BranchSpec, DirectValue)>)
Branching value with multiple DirectValue
s defined for different branches
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Value
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
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