pub enum BaseCommand {
Docker,
SudoDocker,
Podman,
}
Expand description
Preset base commands that a Launcher
can be constructed from.
Variants§
Trait Implementations§
Source§impl Clone for BaseCommand
impl Clone for BaseCommand
Source§fn clone(&self) -> BaseCommand
fn clone(&self) -> BaseCommand
Returns a copy 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 moreSource§impl Debug for BaseCommand
impl Debug for BaseCommand
Source§impl From<BaseCommand> for Launcher
impl From<BaseCommand> for Launcher
Source§fn from(bc: BaseCommand) -> Launcher
fn from(bc: BaseCommand) -> Launcher
Converts to this type from the input type.
Source§impl PartialEq for BaseCommand
impl PartialEq for BaseCommand
impl Copy for BaseCommand
impl Eq for BaseCommand
impl StructuralPartialEq for BaseCommand
Auto Trait Implementations§
impl Freeze for BaseCommand
impl RefUnwindSafe for BaseCommand
impl Send for BaseCommand
impl Sync for BaseCommand
impl Unpin for BaseCommand
impl UnwindSafe for BaseCommand
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