Struct read_fonts::tables::aat::LookupSingle
source · #[repr(packed(1))]pub struct LookupSingle<T>where
T: LookupValue,{
pub glyph: BigEndian<u16>,
pub value: BigEndian<T>,
}
Expand description
Lookup single record for format 6.
Fields§
§glyph: BigEndian<u16>
The glyph index.
value: BigEndian<T>
The lookup value.
Trait Implementations§
source§impl<T> Clone for LookupSingle<T>
impl<T> Clone for LookupSingle<T>
source§fn clone(&self) -> LookupSingle<T>
fn clone(&self) -> LookupSingle<T>
Returns a copy 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<T: LookupValue> FixedSize for LookupSingle<T>
impl<T: LookupValue> FixedSize for LookupSingle<T>
Note: this requires LookupSingle
to be repr(packed)
.
source§const RAW_BYTE_LEN: usize = _
const RAW_BYTE_LEN: usize = _
The raw size of this type, in bytes. Read more
source§impl<T> Zeroable for LookupSingle<T>where
T: LookupValue + AnyBitPattern,
impl<T> Zeroable for LookupSingle<T>where
T: LookupValue + AnyBitPattern,
impl<T> AnyBitPattern for LookupSingle<T>where
T: LookupValue + AnyBitPattern,
impl<T> Copy for LookupSingle<T>where
T: LookupValue + Copy,
Auto Trait Implementations§
impl<T> Freeze for LookupSingle<T>
impl<T> RefUnwindSafe for LookupSingle<T>
impl<T> Send for LookupSingle<T>
impl<T> Sync for LookupSingle<T>
impl<T> Unpin for LookupSingle<T>
impl<T> UnwindSafe for LookupSingle<T>
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
.source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)