pub struct Descriptor(/* private fields */);
Expand description
A 64-bit mode user segment descriptor.
A segment descriptor is an entry in a GDT or LDT that provides the processor with the size and location of a segment, as well as access control and status information.
Refer to section 3.4.5 in Vol. 3A of the Intel® 64 and IA-32 Architectures Developer’s Manual for details.
Implementations§
Source§impl Descriptor
impl Descriptor
Sourcepub const fn from_bits(bits: u64) -> Self
pub const fn from_bits(bits: u64) -> Self
Constructs a new instance of Self
from the provided raw bits.
Sourcepub fn with<T>(self, field: Pack64<T, Self>, value: T) -> Selfwhere
T: FromBits<u64>,
pub fn with<T>(self, field: Pack64<T, Self>, value: T) -> Selfwhere
T: FromBits<u64>,
Packs the bit representation of value
into self
at the bit
range designated by field
, returning a new bitfield.
Sourcepub fn set<T>(&mut self, field: Pack64<T, Self>, value: T) -> &mut Selfwhere
T: FromBits<u64>,
pub fn set<T>(&mut self, field: Pack64<T, Self>, value: T) -> &mut Selfwhere
T: FromBits<u64>,
Packs the bit representation of value
into self
at the range
designated by field
, mutating self
in place.
Sourcepub fn get<T>(self, field: Pack64<T, Self>) -> Twhere
T: FromBits<u64>,
pub fn get<T>(self, field: Pack64<T, Self>) -> Twhere
T: FromBits<u64>,
Unpacks the bit range represented by field
from self
, and
converts it into a T
-typed value.
§Panics
This method panics if self
does not contain a valid bit
pattern for a T
-typed value, as determined by T
’s
FromBits::try_from_bits
implementation.
Sourcepub fn try_get<T>(self, field: Pack64<T, Self>) -> Result<T, T::Error>where
T: FromBits<u64>,
pub fn try_get<T>(self, field: Pack64<T, Self>) -> Result<T, T::Error>where
T: FromBits<u64>,
Unpacks the bit range represented by field
from self
and attempts to convert it into a T
-typed value.
§Returns
Ok(T)
if aT
-typed value could be constructed from the bits insrc
Err(T::Error)
ifsrc
does not contain a valid bit pattern for aT
-typed value, as determined byT
’s [FromBits::try_from_bits
implementation.
Sourcepub fn assert_valid()
pub fn assert_valid()
Asserts that all the packing specs for this type are valid.
This is intended to be used in unit tests.
Sourcepub fn display_ascii(&self) -> impl Display
pub fn display_ascii(&self) -> impl Display
Returns a value that formats this bitfield in a multi-line format, using only ASCII characters.
This is equivalent to formatting this bitfield using a {}
display specifier, but will never use Unicode box-drawing
characters, even when an upstream formatter uses the {:#}
fmt::Display
specifier. This is intended for use on platforms
where Unicode box drawing characters are never available.
Sourcepub fn display_unicode(&self) -> impl Display
pub fn display_unicode(&self) -> impl Display
Returns a value that formats this bitfield in a multi-line format, always using Unicode box-drawing characters.
This is equivalent to formatting this bitfield using a {:#}
format specifier, but will always use Unicode box-drawing
characters, even when an upstream formatter uses the {}
fmt::Display
specifier.
Trait Implementations§
Source§impl Binary for Descriptor
impl Binary for Descriptor
Source§impl Clone for Descriptor
impl Clone for Descriptor
Source§fn clone(&self) -> Descriptor
fn clone(&self) -> Descriptor
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more