pub enum EvgCommand {
Function(FunctionCall),
BuiltIn(BuiltInCommand),
}Variants§
Function(FunctionCall)
BuiltIn(BuiltInCommand)
Trait Implementations§
Source§impl Clone for EvgCommand
impl Clone for EvgCommand
Source§fn clone(&self) -> EvgCommand
fn clone(&self) -> EvgCommand
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 EvgCommand
impl Debug for EvgCommand
Source§impl<'de> Deserialize<'de> for EvgCommand
impl<'de> Deserialize<'de> for EvgCommand
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 From<&str> for EvgCommand
impl From<&str> for EvgCommand
Source§fn from(item: &str) -> EvgCommand
fn from(item: &str) -> EvgCommand
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EvgCommand
impl RefUnwindSafe for EvgCommand
impl Send for EvgCommand
impl Sync for EvgCommand
impl Unpin for EvgCommand
impl UnwindSafe for EvgCommand
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