pub enum DoctorCliCommand {
Run(DoctorCliOptions),
}Variants§
Run(DoctorCliOptions)
Trait Implementations§
Source§impl Clone for DoctorCliCommand
impl Clone for DoctorCliCommand
Source§fn clone(&self) -> DoctorCliCommand
fn clone(&self) -> DoctorCliCommand
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 moreSource§impl Debug for DoctorCliCommand
impl Debug for DoctorCliCommand
Source§impl PartialEq for DoctorCliCommand
impl PartialEq for DoctorCliCommand
Source§fn eq(&self, other: &DoctorCliCommand) -> bool
fn eq(&self, other: &DoctorCliCommand) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DoctorCliCommand
impl StructuralPartialEq for DoctorCliCommand
Auto Trait Implementations§
impl Freeze for DoctorCliCommand
impl RefUnwindSafe for DoctorCliCommand
impl Send for DoctorCliCommand
impl Sync for DoctorCliCommand
impl Unpin for DoctorCliCommand
impl UnsafeUnpin for DoctorCliCommand
impl UnwindSafe for DoctorCliCommand
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