pub struct PipelineSegment {
pub commands: Vec<ParsedCommandElement>,
pub redirections: Vec<ParsedRedirection>,
pub nested_commands: Option<Vec<ParsedCommandElement>>,
}Expand description
Pipeline segment
Fields§
§commands: Vec<ParsedCommandElement>§redirections: Vec<ParsedRedirection>§nested_commands: Option<Vec<ParsedCommandElement>>Trait Implementations§
Source§impl Clone for PipelineSegment
impl Clone for PipelineSegment
Source§fn clone(&self) -> PipelineSegment
fn clone(&self) -> PipelineSegment
Returns a duplicate of the value. Read more
1.0.0 · 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 PipelineSegment
impl Debug for PipelineSegment
Source§impl<'de> Deserialize<'de> for PipelineSegment
impl<'de> Deserialize<'de> for PipelineSegment
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
Source§impl PartialEq for PipelineSegment
impl PartialEq for PipelineSegment
Source§impl Serialize for PipelineSegment
impl Serialize for PipelineSegment
impl StructuralPartialEq for PipelineSegment
Auto Trait Implementations§
impl Freeze for PipelineSegment
impl RefUnwindSafe for PipelineSegment
impl Send for PipelineSegment
impl Sync for PipelineSegment
impl Unpin for PipelineSegment
impl UnsafeUnpin for PipelineSegment
impl UnwindSafe for PipelineSegment
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