pub enum ExeScriptCommand {
Sign {},
Deploy {
net: Vec<Network>,
hosts: HashMap<String, String>,
},
Start {
args: Vec<String>,
},
Run {
entry_point: String,
args: Vec<String>,
capture: Option<Capture>,
},
Transfer {
from: String,
to: String,
args: TransferArgs,
},
Terminate {},
}Variants
Sign
Fields
Deploy
Start
Run
Transfer
Terminate
Fields
Trait Implementations
sourceimpl Clone for ExeScriptCommand
impl Clone for ExeScriptCommand
sourcefn clone(&self) -> ExeScriptCommand
fn clone(&self) -> ExeScriptCommand
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ExeScriptCommand
impl Debug for ExeScriptCommand
sourceimpl<'de> Deserialize<'de> for ExeScriptCommand
impl<'de> Deserialize<'de> for ExeScriptCommand
sourcefn 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
sourceimpl From<ExeScriptCommand> for ExeScriptCommandState
impl From<ExeScriptCommand> for ExeScriptCommandState
sourcefn from(cmd: ExeScriptCommand) -> Self
fn from(cmd: ExeScriptCommand) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<ExeScriptCommand> for ExeScriptCommand
impl PartialEq<ExeScriptCommand> for ExeScriptCommand
sourcefn eq(&self, other: &ExeScriptCommand) -> bool
fn eq(&self, other: &ExeScriptCommand) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourceimpl Serialize for ExeScriptCommand
impl Serialize for ExeScriptCommand
impl StructuralPartialEq for ExeScriptCommand
Auto Trait Implementations
impl RefUnwindSafe for ExeScriptCommand
impl Send for ExeScriptCommand
impl Sync for ExeScriptCommand
impl Unpin for ExeScriptCommand
impl UnwindSafe for ExeScriptCommand
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more