Struct x86defs::SegmentAttributes

source ·
pub struct SegmentAttributes(/* private fields */);

Implementations§

source§

impl SegmentAttributes

source

pub const fn new() -> Self

Creates a new default initialized bitfield.

source

pub const fn from_bits(bits: u16) -> Self

Convert from bits.

source

pub const fn into_bits(self) -> u16

Convert into bits.

source

pub const fn segment_type(&self) -> u8

Bits: 0..4

source

pub const fn with_segment_type(self, value: u8) -> Self

Bits: 0..4

source

pub fn set_segment_type(&mut self, value: u8)

Bits: 0..4

source

pub const fn non_system_segment(&self) -> bool

Bits: 4..5

source

pub const fn with_non_system_segment(self, value: bool) -> Self

Bits: 4..5

source

pub fn set_non_system_segment(&mut self, value: bool)

Bits: 4..5

source

pub const fn descriptor_privilege_level(&self) -> u8

Bits: 5..7

source

pub const fn with_descriptor_privilege_level(self, value: u8) -> Self

Bits: 5..7

source

pub fn set_descriptor_privilege_level(&mut self, value: u8)

Bits: 5..7

source

pub const fn present(&self) -> bool

Bits: 7..8

source

pub const fn with_present(self, value: bool) -> Self

Bits: 7..8

source

pub fn set_present(&mut self, value: bool)

Bits: 7..8

source

pub const fn available(&self) -> bool

Bits: 12..13

source

pub const fn with_available(self, value: bool) -> Self

Bits: 12..13

source

pub fn set_available(&mut self, value: bool)

Bits: 12..13

source

pub const fn long(&self) -> bool

Bits: 13..14

source

pub const fn with_long(self, value: bool) -> Self

Bits: 13..14

source

pub fn set_long(&mut self, value: bool)

Bits: 13..14

source

pub const fn default(&self) -> bool

Bits: 14..15

source

pub const fn with_default(self, value: bool) -> Self

Bits: 14..15

source

pub fn set_default(&mut self, value: bool)

Bits: 14..15

source

pub const fn granularity(&self) -> bool

Bits: 15..16

source

pub const fn with_granularity(self, value: bool) -> Self

Bits: 15..16

source

pub fn set_granularity(&mut self, value: bool)

Bits: 15..16

source§

impl SegmentAttributes

source

pub const fn as_bits(&self) -> u16

Trait Implementations§

source§

impl<'a> Arbitrary<'a> for SegmentAttributes

source§

fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self>

Generate an arbitrary value of Self from the given unstructured data. Read more
§

fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>

Generate an arbitrary value of Self from the entirety of the given unstructured data. Read more
§

fn size_hint(depth: usize) -> (usize, Option<usize>)

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
source§

impl Clone for SegmentAttributes

source§

fn clone(&self) -> SegmentAttributes

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SegmentAttributes

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for SegmentAttributes

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl From<SegmentAttributes> for u16

source§

fn from(v: SegmentAttributes) -> u16

Converts to this type from the input type.
source§

impl From<u16> for SegmentAttributes

source§

fn from(v: u16) -> Self

Converts to this type from the input type.
source§

impl PartialEq for SegmentAttributes

source§

fn eq(&self, other: &SegmentAttributes) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for SegmentAttributes

source§

impl StructuralPartialEq for SegmentAttributes

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.