pub enum AccessWidth {
Byte,
Word,
Dword,
Qword,
}Expand description
The width of a guest bus access.
The term “word” follows the x86 convention and means 16 bits.
Variants§
Implementations§
Source§impl AccessWidth
impl AccessWidth
Trait Implementations§
Source§impl Clone for AccessWidth
impl Clone for AccessWidth
Source§fn clone(&self) -> AccessWidth
fn clone(&self) -> AccessWidth
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AccessWidth
Source§impl Debug for AccessWidth
impl Debug for AccessWidth
impl Eq for AccessWidth
Source§impl Ord for AccessWidth
impl Ord for AccessWidth
Source§fn cmp(&self, other: &AccessWidth) -> Ordering
fn cmp(&self, other: &AccessWidth) -> Ordering
1.21.0 (const: unstable) · 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 AccessWidth
impl PartialEq for AccessWidth
Source§impl PartialOrd for AccessWidth
impl PartialOrd for AccessWidth
impl StructuralPartialEq for AccessWidth
Auto Trait Implementations§
impl Freeze for AccessWidth
impl RefUnwindSafe for AccessWidth
impl Send for AccessWidth
impl Sync for AccessWidth
impl Unpin for AccessWidth
impl UnsafeUnpin for AccessWidth
impl UnwindSafe for AccessWidth
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