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§
Source§impl Debug for ExportResult
impl Debug for ExportResult
Source§impl<'de> Deserialize<'de> for ExportResult
impl<'de> Deserialize<'de> for ExportResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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