Struct owned_ttf_parser::svg::SvgDocumentsList
source · pub struct SvgDocumentsList<'a> {
data: &'a [u8],
records: LazyArray16<'a, SvgDocumentRecord>,
}
Expand description
A list of SVG documents.
Fields§
§data: &'a [u8]
§records: LazyArray16<'a, SvgDocumentRecord>
Implementations§
source§impl<'a> SvgDocumentsList<'a>
impl<'a> SvgDocumentsList<'a>
Trait Implementations§
source§impl<'a> Clone for SvgDocumentsList<'a>
impl<'a> Clone for SvgDocumentsList<'a>
source§fn clone(&self) -> SvgDocumentsList<'a>
fn clone(&self) -> SvgDocumentsList<'a>
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 moresource§impl Debug for SvgDocumentsList<'_>
impl Debug for SvgDocumentsList<'_>
source§impl<'a> IntoIterator for SvgDocumentsList<'a>
impl<'a> IntoIterator for SvgDocumentsList<'a>
§type Item = SvgDocument<'a>
type Item = SvgDocument<'a>
The type of the elements being iterated over.
§type IntoIter = SvgDocumentsListIter<'a>
type IntoIter = SvgDocumentsListIter<'a>
Which kind of iterator are we turning this into?
source§fn into_iter(self) -> <SvgDocumentsList<'a> as IntoIterator>::IntoIter
fn into_iter(self) -> <SvgDocumentsList<'a> as IntoIterator>::IntoIter
Creates an iterator from a value. Read more
impl<'a> Copy for SvgDocumentsList<'a>
Auto Trait Implementations§
impl<'a> Freeze for SvgDocumentsList<'a>
impl<'a> RefUnwindSafe for SvgDocumentsList<'a>
impl<'a> Send for SvgDocumentsList<'a>
impl<'a> Sync for SvgDocumentsList<'a>
impl<'a> Unpin for SvgDocumentsList<'a>
impl<'a> UnwindSafe for SvgDocumentsList<'a>
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