pub struct GDocsArchiveResult {
pub html: String,
pub markdown: String,
pub images: Vec<ExtractedImage>,
pub document_id: String,
pub export_url: String,
}Expand description
Result of fetching a Google Doc as an archive.
Fields§
§html: StringHTML content with local image paths
markdown: StringMarkdown content with local image paths
images: Vec<ExtractedImage>Extracted images
document_id: StringDocument ID
export_url: StringExport URL used
Trait Implementations§
Source§impl Clone for GDocsArchiveResult
impl Clone for GDocsArchiveResult
Source§fn clone(&self) -> GDocsArchiveResult
fn clone(&self) -> GDocsArchiveResult
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 GDocsArchiveResult
impl RefUnwindSafe for GDocsArchiveResult
impl Send for GDocsArchiveResult
impl Sync for GDocsArchiveResult
impl Unpin for GDocsArchiveResult
impl UnsafeUnpin for GDocsArchiveResult
impl UnwindSafe for GDocsArchiveResult
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