pub enum IgnoreUnmap {
Ignore,
Unmap,
}Expand description
A QEMU setting encoded as "ignore" or "unmap".
Variants§
Trait Implementations§
Source§impl Arbitrary for IgnoreUnmap
impl Arbitrary for IgnoreUnmap
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() -> IgnoreUnmap>), (u32, Arc<fn() -> IgnoreUnmap>))>
type Strategy = TupleUnion<((u32, Arc<fn() -> IgnoreUnmap>), (u32, Arc<fn() -> IgnoreUnmap>))>
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 IgnoreUnmap
impl Clone for IgnoreUnmap
Source§fn clone(&self) -> IgnoreUnmap
fn clone(&self) -> IgnoreUnmap
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 IgnoreUnmap
impl Debug for IgnoreUnmap
Source§impl Display for IgnoreUnmap
impl Display for IgnoreUnmap
Source§impl FromStr for IgnoreUnmap
impl FromStr for IgnoreUnmap
Source§impl Hash for IgnoreUnmap
impl Hash for IgnoreUnmap
Source§impl Ord for IgnoreUnmap
impl Ord for IgnoreUnmap
Source§fn cmp(&self, other: &IgnoreUnmap) -> Ordering
fn cmp(&self, other: &IgnoreUnmap) -> 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 IgnoreUnmap
impl PartialEq for IgnoreUnmap
Source§impl PartialOrd for IgnoreUnmap
impl PartialOrd for IgnoreUnmap
impl Eq for IgnoreUnmap
impl StructuralPartialEq for IgnoreUnmap
Auto Trait Implementations§
impl Freeze for IgnoreUnmap
impl RefUnwindSafe for IgnoreUnmap
impl Send for IgnoreUnmap
impl Sync for IgnoreUnmap
impl Unpin for IgnoreUnmap
impl UnsafeUnpin for IgnoreUnmap
impl UnwindSafe for IgnoreUnmap
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