pub enum CommandExecutionStatus {
Complete(Result<CommandExecutionResult, Diagnostic>),
NeedsAsyncRequest,
}Variants§
Complete(Result<CommandExecutionResult, Diagnostic>)
NeedsAsyncRequest
Auto Trait Implementations§
impl Freeze for CommandExecutionStatus
impl RefUnwindSafe for CommandExecutionStatus
impl Send for CommandExecutionStatus
impl Sync for CommandExecutionStatus
impl Unpin for CommandExecutionStatus
impl UnwindSafe for CommandExecutionStatus
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