pub enum PipeTarget {
Name(String),
Var(String),
}Expand description
A pipe endpoint for a WITH_IO binding: either a literal pipe:name
or a $var holding a PIPE value, resolved against the live pipe
registry when the step runs.
Variants§
Trait Implementations§
Source§impl Clone for PipeTarget
impl Clone for PipeTarget
Source§fn clone(&self) -> PipeTarget
fn clone(&self) -> PipeTarget
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 PipeTarget
impl Debug for PipeTarget
impl Eq for PipeTarget
Source§impl PartialEq for PipeTarget
impl PartialEq for PipeTarget
impl StructuralPartialEq for PipeTarget
Auto Trait Implementations§
impl Freeze for PipeTarget
impl RefUnwindSafe for PipeTarget
impl Send for PipeTarget
impl Sync for PipeTarget
impl Unpin for PipeTarget
impl UnsafeUnpin for PipeTarget
impl UnwindSafe for PipeTarget
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