#[non_exhaustive]pub struct HwpxDocument {
pub document: Document<Draft>,
pub style_store: HwpxStyleStore,
pub image_store: ImageStore,
}Expand description
The result of decoding an HWPX file.
Contains the Core document (structure), the HWPX-specific style
store (fonts, char shapes, para shapes from header.xml), and
binary image data extracted from BinData/ entries.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.document: Document<Draft>The decoded document in Core’s DOM.
style_store: HwpxStyleStoreStyle information parsed from header.xml.
image_store: ImageStoreBinary image data extracted from BinData/ ZIP entries.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HwpxDocument
impl RefUnwindSafe for HwpxDocument
impl Send for HwpxDocument
impl Sync for HwpxDocument
impl Unpin for HwpxDocument
impl UnwindSafe for HwpxDocument
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