pub struct WpdDocument {
pub events: Vec<WpdEvent>,
pub metadata: WpdMetadata,
}Expand description
The structured WordPerfect document model: an ordered event stream plus document-level metadata.
Fields§
§events: Vec<WpdEvent>The recorded event stream, in document order.
metadata: WpdMetadataDocument metadata, if libwpd reported any.
Trait Implementations§
Source§impl Clone for WpdDocument
impl Clone for WpdDocument
Source§fn clone(&self) -> WpdDocument
fn clone(&self) -> WpdDocument
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WpdDocument
impl Debug for WpdDocument
Source§impl Default for WpdDocument
impl Default for WpdDocument
Source§fn default() -> WpdDocument
fn default() -> WpdDocument
Returns the “default value” for a type. Read more
impl Eq for WpdDocument
Source§impl PartialEq for WpdDocument
impl PartialEq for WpdDocument
impl StructuralPartialEq for WpdDocument
Auto Trait Implementations§
impl Freeze for WpdDocument
impl RefUnwindSafe for WpdDocument
impl Send for WpdDocument
impl Sync for WpdDocument
impl Unpin for WpdDocument
impl UnsafeUnpin for WpdDocument
impl UnwindSafe for WpdDocument
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