pub enum BackendMode {
Auto,
Native,
Docker,
}Expand description
Backend mode selection
Variants§
Auto
Auto-select: native on Unix (if available), docker otherwise
Native
Force native backend (requires libstdio_bus)
Docker
Force Docker backend
Trait Implementations§
Source§impl Clone for BackendMode
impl Clone for BackendMode
Source§fn clone(&self) -> BackendMode
fn clone(&self) -> BackendMode
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 moreSource§impl Debug for BackendMode
impl Debug for BackendMode
Source§impl Default for BackendMode
impl Default for BackendMode
Source§fn default() -> BackendMode
fn default() -> BackendMode
Returns the “default value” for a type. Read more
Source§impl Display for BackendMode
impl Display for BackendMode
Source§impl PartialEq for BackendMode
impl PartialEq for BackendMode
impl Copy for BackendMode
impl Eq for BackendMode
impl StructuralPartialEq for BackendMode
Auto Trait Implementations§
impl Freeze for BackendMode
impl RefUnwindSafe for BackendMode
impl Send for BackendMode
impl Sync for BackendMode
impl Unpin for BackendMode
impl UnsafeUnpin for BackendMode
impl UnwindSafe for BackendMode
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