pub struct HtmlInput {
pub document: CT_Document,
pub styles: CT_Styles,
pub numbering: Option<CT_Numbering>,
pub images: HashMap<String, ImageData>,
pub hyperlink_urls: HashMap<String, String>,
}Expand description
Input for HTML conversion.
Fields§
§document: CT_Document§styles: CT_Styles§numbering: Option<CT_Numbering>§images: HashMap<String, ImageData>Images keyed by embed/relationship ID.
hyperlink_urls: HashMap<String, String>Hyperlink URLs keyed by relationship ID.
Auto Trait Implementations§
impl Freeze for HtmlInput
impl RefUnwindSafe for HtmlInput
impl Send for HtmlInput
impl Sync for HtmlInput
impl Unpin for HtmlInput
impl UnsafeUnpin for HtmlInput
impl UnwindSafe for HtmlInput
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