Struct read_fonts::array::ComputedArray
source · [−]pub struct ComputedArray<'a, T: ReadArgs> { /* private fields */ }Expand description
An array whose items size is not known at compile time.
At runtime, Args are provided which will be used to compute the size
of each item.
Implementations
sourceimpl<'a, T: ComputeSize> ComputedArray<'a, T>
impl<'a, T: ComputeSize> ComputedArray<'a, T>
Trait Implementations
sourceimpl<'a, T: Clone + ReadArgs> Clone for ComputedArray<'a, T>where
T::Args: Clone,
impl<'a, T: Clone + ReadArgs> Clone for ComputedArray<'a, T>where
T::Args: Clone,
sourcefn clone(&self) -> ComputedArray<'a, T>
fn clone(&self) -> ComputedArray<'a, T>
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl<T: ReadArgs> Debug for ComputedArray<'_, T>
impl<T: ReadArgs> Debug for ComputedArray<'_, T>
sourceimpl<'a, T> FontReadWithArgs<'a> for ComputedArray<'a, T>where
T: ComputeSize + FontReadWithArgs<'a>,
T::Args: Copy,
impl<'a, T> FontReadWithArgs<'a> for ComputedArray<'a, T>where
T: ComputeSize + FontReadWithArgs<'a>,
T::Args: Copy,
Auto Trait Implementations
impl<'a, T> RefUnwindSafe for ComputedArray<'a, T>where
<T as ReadArgs>::Args: RefUnwindSafe,
impl<'a, T> Send for ComputedArray<'a, T>where
<T as ReadArgs>::Args: Send,
impl<'a, T> Sync for ComputedArray<'a, T>where
<T as ReadArgs>::Args: Sync,
impl<'a, T> Unpin for ComputedArray<'a, T>where
<T as ReadArgs>::Args: Unpin,
impl<'a, T> UnwindSafe for ComputedArray<'a, T>where
<T as ReadArgs>::Args: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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