Struct ttf_parser::avar::SegmentMaps
source · [−]pub struct SegmentMaps<'a> { /* private fields */ }
Expand description
A list of segment maps.
Can be empty.
The internal data layout is not designed for random access,
therefore we’re not providing the get()
method and only an iterator.
Implementations
sourceimpl<'a> SegmentMaps<'a>
impl<'a> SegmentMaps<'a>
Trait Implementations
sourceimpl<'a> Clone for SegmentMaps<'a>
impl<'a> Clone for SegmentMaps<'a>
sourcefn clone(&self) -> SegmentMaps<'a>
fn clone(&self) -> SegmentMaps<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SegmentMaps<'_>
impl Debug for SegmentMaps<'_>
sourceimpl<'a> IntoIterator for SegmentMaps<'a>
impl<'a> IntoIterator for SegmentMaps<'a>
type Item = LazyArray16<'a, AxisValueMap>
type Item = LazyArray16<'a, AxisValueMap>
The type of the elements being iterated over.
type IntoIter = SegmentMapsIter<'a>
type IntoIter = SegmentMapsIter<'a>
Which kind of iterator are we turning this into?
impl<'a> Copy for SegmentMaps<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for SegmentMaps<'a>
impl<'a> Send for SegmentMaps<'a>
impl<'a> Sync for SegmentMaps<'a>
impl<'a> Unpin for SegmentMaps<'a>
impl<'a> UnwindSafe for SegmentMaps<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more