pub struct InvokeResult {
pub success: bool,
pub value: Option<Value>,
pub message: Option<String>,
}Expand description
Result type for method invocation.
Fields§
§success: bool§value: Option<Value>§message: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for InvokeResult
impl Clone for InvokeResult
Source§fn clone(&self) -> InvokeResult
fn clone(&self) -> InvokeResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InvokeResult
impl RefUnwindSafe for InvokeResult
impl Send for InvokeResult
impl Sync for InvokeResult
impl Unpin for InvokeResult
impl UnsafeUnpin for InvokeResult
impl UnwindSafe for InvokeResult
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