Struct ttf_parser::aat::BinarySearchTable
source · struct BinarySearchTable<'a, T: BinarySearchValue> {
values: LazyArray16<'a, T>,
len: NonZeroU16,
}
Expand description
A binary searching table as defined at https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6Tables.html
Fields§
§values: LazyArray16<'a, T>
§len: NonZeroU16
Implementations§
Trait Implementations§
source§impl<'a, T: Clone + BinarySearchValue> Clone for BinarySearchTable<'a, T>
impl<'a, T: Clone + BinarySearchValue> Clone for BinarySearchTable<'a, T>
source§fn clone(&self) -> BinarySearchTable<'a, T>
fn clone(&self) -> BinarySearchTable<'a, 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 moreAuto Trait Implementations§
impl<'a, T> Freeze for BinarySearchTable<'a, T>
impl<'a, T> RefUnwindSafe for BinarySearchTable<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for BinarySearchTable<'a, T>where
T: Send,
impl<'a, T> Sync for BinarySearchTable<'a, T>where
T: Sync,
impl<'a, T> Unpin for BinarySearchTable<'a, T>where
T: Unpin,
impl<'a, T> UnwindSafe for BinarySearchTable<'a, T>where
T: UnwindSafe,
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