pub enum CommandInputEvaluationStatus {
Complete(CommandInputsEvaluationResult),
NeedsUserInteraction(CommandInputsEvaluationResult),
Aborted(CommandInputsEvaluationResult, Vec<Diagnostic>),
}Variants§
Complete(CommandInputsEvaluationResult)
NeedsUserInteraction(CommandInputsEvaluationResult)
Aborted(CommandInputsEvaluationResult, Vec<Diagnostic>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CommandInputEvaluationStatus
impl RefUnwindSafe for CommandInputEvaluationStatus
impl Send for CommandInputEvaluationStatus
impl Sync for CommandInputEvaluationStatus
impl Unpin for CommandInputEvaluationStatus
impl UnsafeUnpin for CommandInputEvaluationStatus
impl UnwindSafe for CommandInputEvaluationStatus
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