Struct read_fonts::array::VarLenArray
source · pub struct VarLenArray<'a, T> { /* private fields */ }
Expand description
An array of items of non-uniform length.
Random access into this array cannot be especially efficient, since it requires a linear scan.
Implementations§
source§impl<'a, T: FontRead<'a> + VarSize> VarLenArray<'a, T>
impl<'a, T: FontRead<'a> + VarSize> VarLenArray<'a, T>
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> Freeze for VarLenArray<'a, T>
impl<'a, T> RefUnwindSafe for VarLenArray<'a, T>where
T: RefUnwindSafe,
impl<'a, T> !Send for VarLenArray<'a, T>
impl<'a, T> !Sync for VarLenArray<'a, T>
impl<'a, T> Unpin for VarLenArray<'a, T>
impl<'a, T> UnwindSafe for VarLenArray<'a, T>where
T: RefUnwindSafe,
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