pub enum OnOffSplit {
On,
Off,
Split,
}Expand description
QEMU kernel-irqchip= values for -accel.
Variants§
Trait Implementations§
Source§impl Arbitrary for OnOffSplit
impl Arbitrary for OnOffSplit
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() -> OnOffSplit>), (u32, Arc<fn() -> OnOffSplit>), (u32, Arc<fn() -> OnOffSplit>))>
type Strategy = TupleUnion<((u32, Arc<fn() -> OnOffSplit>), (u32, Arc<fn() -> OnOffSplit>), (u32, Arc<fn() -> OnOffSplit>))>
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 OnOffSplit
impl Clone for OnOffSplit
Source§fn clone(&self) -> OnOffSplit
fn clone(&self) -> OnOffSplit
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 OnOffSplit
impl Debug for OnOffSplit
Source§impl Default for OnOffSplit
impl Default for OnOffSplit
Source§fn default() -> OnOffSplit
fn default() -> OnOffSplit
Returns the “default value” for a type. Read more
Source§impl Display for OnOffSplit
impl Display for OnOffSplit
Source§impl FromStr for OnOffSplit
impl FromStr for OnOffSplit
Source§impl Hash for OnOffSplit
impl Hash for OnOffSplit
Source§impl Ord for OnOffSplit
impl Ord for OnOffSplit
Source§fn cmp(&self, other: &OnOffSplit) -> Ordering
fn cmp(&self, other: &OnOffSplit) -> 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 OnOffSplit
impl PartialEq for OnOffSplit
Source§impl PartialOrd for OnOffSplit
impl PartialOrd for OnOffSplit
impl Eq for OnOffSplit
impl StructuralPartialEq for OnOffSplit
Auto Trait Implementations§
impl Freeze for OnOffSplit
impl RefUnwindSafe for OnOffSplit
impl Send for OnOffSplit
impl Sync for OnOffSplit
impl Unpin for OnOffSplit
impl UnsafeUnpin for OnOffSplit
impl UnwindSafe for OnOffSplit
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