pub enum CommandType {
Fmt,
Bump,
Publish,
Sync,
Help,
Version,
}Expand description
Available commands
Variants§
Fmt
Format code using cargo fmt
Bump
Bump version in Cargo.toml
Publish
Publish packages in monorepo
Sync
Sync [workspace.dependencies] entry versions and aliases with the
[workspace.package].version declared in the workspace root and the
[package].name declared in each member crate.
Help
Show help
Version
Show version
Trait Implementations§
Source§impl Clone for CommandType
impl Clone for CommandType
impl Copy for CommandType
Source§impl Debug for CommandType
impl Debug for CommandType
impl Eq for CommandType
Source§impl PartialEq for CommandType
impl PartialEq for CommandType
impl StructuralPartialEq for CommandType
Auto Trait Implementations§
impl Freeze for CommandType
impl RefUnwindSafe for CommandType
impl Send for CommandType
impl Sync for CommandType
impl Unpin for CommandType
impl UnsafeUnpin for CommandType
impl UnwindSafe for CommandType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.