Enum cargo::util::command_prelude::CommandInfo
source · [−]pub enum CommandInfo {
BuiltIn {
name: String,
about: Option<String>,
},
External {
name: String,
path: PathBuf,
},
}
Variants
BuiltIn
External
Implementations
sourceimpl CommandInfo
impl CommandInfo
Trait Implementations
sourceimpl Ord for CommandInfo
impl Ord for CommandInfo
sourceimpl PartialEq<CommandInfo> for CommandInfo
impl PartialEq<CommandInfo> for CommandInfo
sourcefn eq(&self, other: &CommandInfo) -> bool
fn eq(&self, other: &CommandInfo) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CommandInfo) -> bool
fn ne(&self, other: &CommandInfo) -> bool
This method tests for !=
.
sourceimpl PartialOrd<CommandInfo> for CommandInfo
impl PartialOrd<CommandInfo> for CommandInfo
sourcefn partial_cmp(&self, other: &CommandInfo) -> Option<Ordering>
fn partial_cmp(&self, other: &CommandInfo) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Eq for CommandInfo
impl StructuralEq for CommandInfo
impl StructuralPartialEq for CommandInfo
Auto Trait Implementations
impl RefUnwindSafe for CommandInfo
impl Send for CommandInfo
impl Sync for CommandInfo
impl Unpin for CommandInfo
impl UnwindSafe for CommandInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more