#[repr(transparent)]pub struct GptHeaderSignature(pub U64Le);Expand description
GPT header signature.
Tuple Fields§
§0: U64LeImplementations§
Trait Implementations§
Source§impl Clone for GptHeaderSignature
impl Clone for GptHeaderSignature
Source§fn clone(&self) -> GptHeaderSignature
fn clone(&self) -> GptHeaderSignature
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 GptHeaderSignature
impl Debug for GptHeaderSignature
Source§impl Default for GptHeaderSignature
impl Default for GptHeaderSignature
Source§impl Display for GptHeaderSignature
impl Display for GptHeaderSignature
Source§impl Hash for GptHeaderSignature
impl Hash for GptHeaderSignature
Source§impl Ord for GptHeaderSignature
impl Ord for GptHeaderSignature
Source§fn cmp(&self, other: &GptHeaderSignature) -> Ordering
fn cmp(&self, other: &GptHeaderSignature) -> 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 GptHeaderSignature
impl PartialEq for GptHeaderSignature
Source§impl PartialOrd for GptHeaderSignature
impl PartialOrd for GptHeaderSignature
impl Copy for GptHeaderSignature
impl Eq for GptHeaderSignature
impl Pod for GptHeaderSignature
impl StructuralPartialEq for GptHeaderSignature
Auto Trait Implementations§
impl Freeze for GptHeaderSignature
impl RefUnwindSafe for GptHeaderSignature
impl Send for GptHeaderSignature
impl Sync for GptHeaderSignature
impl Unpin for GptHeaderSignature
impl UnwindSafe for GptHeaderSignature
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.