pub struct HostCall {
pub params: Vec<Value>,
pub hostcode: Hostcode,
}Expand description
A HostCall object contains information required for executing a specific
host function.
Fields§
§params: Vec<Value>Must contain the correct parameter types for the host function with host
code hostcode.
hostcode: HostcodeTrait Implementations§
Auto Trait Implementations§
impl Freeze for HostCall
impl RefUnwindSafe for HostCall
impl Send for HostCall
impl Sync for HostCall
impl Unpin for HostCall
impl UnwindSafe for HostCall
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