pub struct InvocationResult {
pub invocation_id: i32,
pub success: bool,
pub result: Vec<EmberValue>,
}Expand description
Result of a function invocation.
Fields§
§invocation_id: i32Invocation ID
success: boolWhether the invocation succeeded
result: Vec<EmberValue>Result values
Implementations§
Trait Implementations§
Source§impl Clone for InvocationResult
impl Clone for InvocationResult
Source§fn clone(&self) -> InvocationResult
fn clone(&self) -> InvocationResult
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 moreAuto Trait Implementations§
impl Freeze for InvocationResult
impl RefUnwindSafe for InvocationResult
impl Send for InvocationResult
impl Sync for InvocationResult
impl Unpin for InvocationResult
impl UnsafeUnpin for InvocationResult
impl UnwindSafe for InvocationResult
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