pub enum IrExecTarget {
Raw,
Capability {
name: String,
},
}Expand description
The two exec source forms (spec/std-script.md): a raw command string
(exec "cmd", dev-profile only) or an operator-manifest capability
(exec <name> with <record>).
Variants§
Trait Implementations§
Source§impl Clone for IrExecTarget
impl Clone for IrExecTarget
Source§fn clone(&self) -> IrExecTarget
fn clone(&self) -> IrExecTarget
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 IrExecTarget
impl Debug for IrExecTarget
impl Eq for IrExecTarget
Source§impl PartialEq for IrExecTarget
impl PartialEq for IrExecTarget
impl StructuralPartialEq for IrExecTarget
Auto Trait Implementations§
impl Freeze for IrExecTarget
impl RefUnwindSafe for IrExecTarget
impl Send for IrExecTarget
impl Sync for IrExecTarget
impl Unpin for IrExecTarget
impl UnsafeUnpin for IrExecTarget
impl UnwindSafe for IrExecTarget
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