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>
where T: LookupValue + Clone + Copy,

source§

fn clone(&self) -> LookupSegment2<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: LookupValue> FixedSize for LookupSegment2<T>

Note: this requires LookupSegment2 to be repr(packed).

source§

const RAW_BYTE_LEN: usize = _

The raw size of this type, in bytes. Read more
source§

impl<T> Zeroable for LookupSegment2<T>

source§

fn zeroed() -> Self

source§

impl<T> AnyBitPattern for LookupSegment2<T>

source§

impl<T> Copy for LookupSegment2<T>
where T: LookupValue + Copy,

Auto Trait Implementations§

§

impl<T> Freeze for LookupSegment2<T>
where <T as Scalar>::Raw: Freeze,

§

impl<T> RefUnwindSafe for LookupSegment2<T>
where <T as Scalar>::Raw: RefUnwindSafe,

§

impl<T> Send for LookupSegment2<T>
where <T as Scalar>::Raw: Send,

§

impl<T> Sync for LookupSegment2<T>
where <T as Scalar>::Raw: Sync,

§

impl<T> Unpin for LookupSegment2<T>
where <T as Scalar>::Raw: Unpin,

§

impl<T> UnwindSafe for LookupSegment2<T>
where <T as Scalar>::Raw: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CheckedBitPattern for T
where T: AnyBitPattern,

source§

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

If this function returns true, then it must be valid to reinterpret bits as &Self.
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.