pub enum InvokeResult {
Complete,
Incomplete,
}Expand description
The possible results of a successful start to a method call.
Variants§
Complete
The method is complete and its result can be fetched immediately.
Incomplete
The method is not finished yet; its result can be fetched on the next timeslice.
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 moreimpl Copy for InvokeResult
Source§impl Debug for InvokeResult
impl Debug for InvokeResult
impl Eq for InvokeResult
Source§impl Hash for InvokeResult
impl Hash for InvokeResult
Source§impl Ord for InvokeResult
impl Ord for InvokeResult
Source§fn cmp(&self, other: &InvokeResult) -> Ordering
fn cmp(&self, other: &InvokeResult) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for InvokeResult
impl PartialEq for InvokeResult
Source§fn eq(&self, other: &InvokeResult) -> bool
fn eq(&self, other: &InvokeResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for InvokeResult
impl PartialOrd for InvokeResult
impl StructuralPartialEq for InvokeResult
Auto 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