pub struct Invocation {
pub func: String,
pub args: Vec<DataValue>,
}
Expand description
Represent a function call; RunCommands invoke a CLIF function using an Invocation.
Fields§
§func: String
The name of the function to call. Note: this field is for mostly included for informational purposes and may not always be necessary for identifying which function to call.
args: Vec<DataValue>
The arguments to be passed to the function when invoked.
Trait Implementations§
Source§impl Debug for Invocation
impl Debug for Invocation
Source§impl Display for Invocation
impl Display for Invocation
Source§impl PartialEq for Invocation
impl PartialEq for Invocation
impl StructuralPartialEq for Invocation
Auto Trait Implementations§
impl Freeze for Invocation
impl RefUnwindSafe for Invocation
impl Send for Invocation
impl Sync for Invocation
impl Unpin for Invocation
impl UnwindSafe for Invocation
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