pub enum OnCoreEsOff {
On,
Core,
Es,
Off,
}Expand description
QEMU -display backend selection.
Each variant models one documented -display form from the bundled QEMU
option reference. to_args() emits raw argv values, while FromStr
accepts the single argument that follows -display.
Variants§
Trait Implementations§
Source§impl Arbitrary for OnCoreEsOff
impl Arbitrary for OnCoreEsOff
Source§type Parameters = ()
type Parameters = ()
The type of parameters that
arbitrary_with accepts for configuration
of the generated Strategy. Parameters must implement Default.Source§type Strategy = TupleUnion<((u32, Arc<fn() -> OnCoreEsOff>), (u32, Arc<fn() -> OnCoreEsOff>), (u32, Arc<fn() -> OnCoreEsOff>), (u32, Arc<fn() -> OnCoreEsOff>))>
type Strategy = TupleUnion<((u32, Arc<fn() -> OnCoreEsOff>), (u32, Arc<fn() -> OnCoreEsOff>), (u32, Arc<fn() -> OnCoreEsOff>), (u32, Arc<fn() -> OnCoreEsOff>))>
The type of
Strategy used to generate values of type Self.Source§fn arbitrary_with(_top: Self::Parameters) -> Self::Strategy
fn arbitrary_with(_top: Self::Parameters) -> Self::Strategy
Source§impl Clone for OnCoreEsOff
impl Clone for OnCoreEsOff
Source§fn clone(&self) -> OnCoreEsOff
fn clone(&self) -> OnCoreEsOff
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 OnCoreEsOff
impl Debug for OnCoreEsOff
Source§impl Hash for OnCoreEsOff
impl Hash for OnCoreEsOff
Source§impl Ord for OnCoreEsOff
impl Ord for OnCoreEsOff
Source§fn cmp(&self, other: &OnCoreEsOff) -> Ordering
fn cmp(&self, other: &OnCoreEsOff) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for OnCoreEsOff
impl PartialEq for OnCoreEsOff
Source§impl PartialOrd for OnCoreEsOff
impl PartialOrd for OnCoreEsOff
impl Eq for OnCoreEsOff
impl StructuralPartialEq for OnCoreEsOff
Auto Trait Implementations§
impl Freeze for OnCoreEsOff
impl RefUnwindSafe for OnCoreEsOff
impl Send for OnCoreEsOff
impl Sync for OnCoreEsOff
impl Unpin for OnCoreEsOff
impl UnsafeUnpin for OnCoreEsOff
impl UnwindSafe for OnCoreEsOff
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