pub enum SimpletonScriptExpression {
FindStruct {
name: String,
module_name: String,
},
FindFunction {
name: String,
module_name: String,
},
Literal(SimpletonScriptLiteral),
StackDrop,
StackDuplicate,
StackSwap,
StackUnwrapBoolean,
StackValueOr(bool),
GetField {
name: String,
},
SetField {
name: String,
},
}
Variants§
FindStruct
FindFunction
Literal(SimpletonScriptLiteral)
StackDrop
StackDuplicate
StackSwap
StackUnwrapBoolean
StackValueOr(bool)
GetField
SetField
Trait Implementations§
Source§impl Debug for SimpletonScriptExpression
impl Debug for SimpletonScriptExpression
Source§impl<'de> Deserialize<'de> for SimpletonScriptExpression
impl<'de> Deserialize<'de> for SimpletonScriptExpression
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
Auto Trait Implementations§
impl Freeze for SimpletonScriptExpression
impl RefUnwindSafe for SimpletonScriptExpression
impl Send for SimpletonScriptExpression
impl Sync for SimpletonScriptExpression
impl Unpin for SimpletonScriptExpression
impl UnwindSafe for SimpletonScriptExpression
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