pub struct ExportData {
pub frames: Vec<Frame>,
pub meta: Meta,
}
Fields§
§frames: Vec<Frame>
§meta: Meta
Implementations§
Source§impl ExportData
impl ExportData
pub fn parse_str(json: &str) -> ExportData
pub fn from_file<P: AsRef<Path>>(path: P) -> ExportData
pub fn from_json_value(json: Value) -> ExportData
Trait Implementations§
Source§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
Source§impl PartialEq for ExportData
impl PartialEq for ExportData
Source§impl Serialize for ExportData
impl Serialize for ExportData
impl StructuralPartialEq for ExportData
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