pub struct ExportResult {
pub content: String,
pub format: String,
}Expand description
Result of an export operation.
Contains the exported content and format identifier.
Fields§
§content: StringExported content (as string - binary formats will be base64 encoded)
format: StringFormat identifier
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExportResult
impl RefUnwindSafe for ExportResult
impl Send for ExportResult
impl Sync for ExportResult
impl Unpin for ExportResult
impl UnwindSafe for ExportResult
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