Enum BunCommand
pub enum BunCommand {
Install,
Run,
Test,
Build,
}Expand description
Common Bun command labels.
Variants§
Implementations§
§impl BunCommand
impl BunCommand
Trait Implementations§
§impl Clone for BunCommand
impl Clone for BunCommand
§fn clone(&self) -> BunCommand
fn clone(&self) -> BunCommand
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for BunCommand
impl Debug for BunCommand
§impl FromStr for BunCommand
impl FromStr for BunCommand
§type Err = BunCommandParseError
type Err = BunCommandParseError
The associated error which can be returned from parsing.
§fn from_str(input: &str) -> Result<BunCommand, <BunCommand as FromStr>::Err>
fn from_str(input: &str) -> Result<BunCommand, <BunCommand as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for BunCommand
impl Hash for BunCommand
§impl Ord for BunCommand
impl Ord for BunCommand
§impl PartialEq for BunCommand
impl PartialEq for BunCommand
§impl PartialOrd for BunCommand
impl PartialOrd for BunCommand
impl Copy for BunCommand
impl Eq for BunCommand
impl StructuralPartialEq for BunCommand
Auto Trait Implementations§
impl Freeze for BunCommand
impl RefUnwindSafe for BunCommand
impl Send for BunCommand
impl Sync for BunCommand
impl Unpin for BunCommand
impl UnsafeUnpin for BunCommand
impl UnwindSafe for BunCommand
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