pub struct GDocsRenderedResult {
pub markdown: String,
pub html: String,
pub text: String,
pub document_id: String,
pub export_url: String,
}Expand description
Rendered Google Docs content from either Docs API or editor model data.
Fields§
§markdown: StringMarkdown output.
html: StringHTML output.
text: StringPlain text output.
document_id: StringThe extracted document ID.
export_url: StringSource URL used for capture.
Trait Implementations§
Source§impl Clone for GDocsRenderedResult
impl Clone for GDocsRenderedResult
Source§fn clone(&self) -> GDocsRenderedResult
fn clone(&self) -> GDocsRenderedResult
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for GDocsRenderedResult
impl RefUnwindSafe for GDocsRenderedResult
impl Send for GDocsRenderedResult
impl Sync for GDocsRenderedResult
impl Unpin for GDocsRenderedResult
impl UnsafeUnpin for GDocsRenderedResult
impl UnwindSafe for GDocsRenderedResult
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