pub enum VersionInfoChild {
StringFileInfo {
tables: HashMap<String, HashMap<String, Data>>,
},
VarFileInfo {
vars: HashMap<String, Vec<u32>>,
},
}Expand description
Helper enum for serializing and deserializing StringFileInfo and VarFileInfo child structures.
Variants§
Trait Implementations§
Source§impl Clone for VersionInfoChild
impl Clone for VersionInfoChild
Source§fn clone(&self) -> VersionInfoChild
fn clone(&self) -> VersionInfoChild
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 VersionInfoChild
impl Debug for VersionInfoChild
Source§impl TryDeserialize for VersionInfoChild
impl TryDeserialize for VersionInfoChild
type Error = Error
fn try_deserialize( src: &mut Deserializer<'_>, ) -> Result<VersionInfoChild, Error>
Source§impl TrySerialize for VersionInfoChild
impl TrySerialize for VersionInfoChild
Auto Trait Implementations§
impl Freeze for VersionInfoChild
impl RefUnwindSafe for VersionInfoChild
impl Send for VersionInfoChild
impl Sync for VersionInfoChild
impl Unpin for VersionInfoChild
impl UnwindSafe for VersionInfoChild
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