Struct read_fonts::tables::aat::LookupSegment2
source · #[repr(packed(1))]pub struct LookupSegment2<T>where
T: LookupValue,{
pub last_glyph: BigEndian<u16>,
pub first_glyph: BigEndian<u16>,
pub value: BigEndian<T>,
}
Expand description
Lookup segment for format 2.
Fields§
§last_glyph: BigEndian<u16>
Last glyph index in this segment.
first_glyph: BigEndian<u16>
First glyph index in this segment.
value: BigEndian<T>
The lookup value.
Trait Implementations§
source§impl<T> Clone for LookupSegment2<T>
impl<T> Clone for LookupSegment2<T>
source§fn clone(&self) -> LookupSegment2<T>
fn clone(&self) -> LookupSegment2<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 LookupSegment2<T>
impl<T: LookupValue> FixedSize for LookupSegment2<T>
Note: this requires LookupSegment2
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 LookupSegment2<T>where
T: LookupValue + AnyBitPattern,
impl<T> Zeroable for LookupSegment2<T>where
T: LookupValue + AnyBitPattern,
impl<T> AnyBitPattern for LookupSegment2<T>where
T: LookupValue + AnyBitPattern,
impl<T> Copy for LookupSegment2<T>where
T: LookupValue + Copy,
Auto Trait Implementations§
impl<T> Freeze for LookupSegment2<T>
impl<T> RefUnwindSafe for LookupSegment2<T>
impl<T> Send for LookupSegment2<T>
impl<T> Sync for LookupSegment2<T>
impl<T> Unpin for LookupSegment2<T>
impl<T> UnwindSafe for LookupSegment2<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
)