pub struct ExportData {
pub session: SessionExportData,
pub export_metadata: ExportMetadata,
pub custom_data: HashMap<String, Value>,
}Expand description
Export data structure
Fields§
§session: SessionExportDataSession information
export_metadata: ExportMetadataExport metadata
custom_data: HashMap<String, Value>Custom data
Trait Implementations§
Source§impl Clone for ExportData
impl Clone for ExportData
Source§fn clone(&self) -> ExportData
fn clone(&self) -> ExportData
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 moreSource§impl Debug for ExportData
impl Debug for ExportData
Source§impl<'de> Deserialize<'de> for ExportData
impl<'de> Deserialize<'de> for ExportData
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 ExportData
impl RefUnwindSafe for ExportData
impl Send for ExportData
impl Sync for ExportData
impl Unpin for ExportData
impl UnwindSafe for ExportData
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