pub struct Program {
pub pipelines: Vec<Pipeline>,
}Expand description
The root of a parsed slash-command program.
A program is a sequence of Pipelines connected by && / || operators.
The operator stored on each pipeline indicates how it connects to the next one.
Fields§
§pipelines: Vec<Pipeline>Trait Implementations§
impl StructuralPartialEq for Program
Auto Trait Implementations§
impl Freeze for Program
impl RefUnwindSafe for Program
impl Send for Program
impl Sync for Program
impl Unpin for Program
impl UnsafeUnpin for Program
impl UnwindSafe for Program
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