#[repr(transparent)]pub struct GptHeaderRevision(pub U32Le);Expand description
GPT header revision.
Tuple Fields§
§0: U32LeImplementations§
Trait Implementations§
Source§impl Clone for GptHeaderRevision
impl Clone for GptHeaderRevision
Source§fn clone(&self) -> GptHeaderRevision
fn clone(&self) -> GptHeaderRevision
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 GptHeaderRevision
impl Debug for GptHeaderRevision
Source§impl Default for GptHeaderRevision
impl Default for GptHeaderRevision
Source§impl Display for GptHeaderRevision
impl Display for GptHeaderRevision
Source§impl Hash for GptHeaderRevision
impl Hash for GptHeaderRevision
Source§impl Ord for GptHeaderRevision
impl Ord for GptHeaderRevision
Source§fn cmp(&self, other: &GptHeaderRevision) -> Ordering
fn cmp(&self, other: &GptHeaderRevision) -> 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 GptHeaderRevision
impl PartialEq for GptHeaderRevision
Source§impl PartialOrd for GptHeaderRevision
impl PartialOrd for GptHeaderRevision
impl Copy for GptHeaderRevision
impl Eq for GptHeaderRevision
impl Pod for GptHeaderRevision
impl StructuralPartialEq for GptHeaderRevision
Auto Trait Implementations§
impl Freeze for GptHeaderRevision
impl RefUnwindSafe for GptHeaderRevision
impl Send for GptHeaderRevision
impl Sync for GptHeaderRevision
impl Unpin for GptHeaderRevision
impl UnwindSafe for GptHeaderRevision
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
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.