#[repr(C, packed(1))]pub struct EncodingSupplement {
pub code: u8,
pub glyph: BigEndian<u16>,
}Expand description
Supplemental encoding record.
Fields§
§code: u8Encoding.
glyph: BigEndian<u16>Name.
Implementations§
Trait Implementations§
Source§impl Clone for EncodingSupplement
impl Clone for EncodingSupplement
Source§fn clone(&self) -> EncodingSupplement
fn clone(&self) -> EncodingSupplement
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 EncodingSupplement
impl Debug for EncodingSupplement
Source§impl FixedSize for EncodingSupplement
impl FixedSize for EncodingSupplement
Source§const RAW_BYTE_LEN: usize
const RAW_BYTE_LEN: usize
The raw size of this type, in bytes. Read more
Source§impl Hash for EncodingSupplement
impl Hash for EncodingSupplement
Source§impl Ord for EncodingSupplement
impl Ord for EncodingSupplement
Source§fn cmp(&self, other: &EncodingSupplement) -> Ordering
fn cmp(&self, other: &EncodingSupplement) -> 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 EncodingSupplement
impl PartialEq for EncodingSupplement
Source§impl PartialOrd for EncodingSupplement
impl PartialOrd for EncodingSupplement
impl AnyBitPattern for EncodingSupplement
impl Copy for EncodingSupplement
impl Eq for EncodingSupplement
impl StructuralPartialEq for EncodingSupplement
Auto Trait Implementations§
impl Freeze for EncodingSupplement
impl RefUnwindSafe for EncodingSupplement
impl Send for EncodingSupplement
impl Sync for EncodingSupplement
impl Unpin for EncodingSupplement
impl UnsafeUnpin for EncodingSupplement
impl UnwindSafe for EncodingSupplement
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.