pub struct Form<'a> {
pub form_type: [u8; 4],
pub chunks: Vec<IffChunk<'a>>,
}Expand description
The top-level FORM structure parsed by the spec-based parser.
Fields§
§form_type: [u8; 4]The 4-byte FORM type (e.g. DJVU, DJVM, BM44, PM44).
chunks: Vec<IffChunk<'a>>All chunks contained within the FORM, in order.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Form<'a>
impl<'a> RefUnwindSafe for Form<'a>
impl<'a> Send for Form<'a>
impl<'a> Sync for Form<'a>
impl<'a> Unpin for Form<'a>
impl<'a> UnsafeUnpin for Form<'a>
impl<'a> UnwindSafe for Form<'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