pub struct GDocsResult {
pub content: String,
pub format: String,
pub document_id: String,
pub export_url: String,
}Expand description
Result of fetching a Google Docs document.
Fields§
§content: StringThe document content in the requested format.
format: StringThe export format used.
document_id: StringThe extracted document ID.
export_url: StringThe export URL that was fetched.
Trait Implementations§
Source§impl Clone for GDocsResult
impl Clone for GDocsResult
Source§fn clone(&self) -> GDocsResult
fn clone(&self) -> GDocsResult
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 GDocsResult
impl RefUnwindSafe for GDocsResult
impl Send for GDocsResult
impl Sync for GDocsResult
impl Unpin for GDocsResult
impl UnsafeUnpin for GDocsResult
impl UnwindSafe for GDocsResult
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