pub enum RawRecord {
Map(Option<String>, BTreeMap<String, RawRecord>),
Struct(Option<(Option<String>, String)>, BTreeMap<String, RawRecord>),
}Variants§
Map(Option<String>, BTreeMap<String, RawRecord>)
Struct(Option<(Option<String>, String)>, BTreeMap<String, RawRecord>)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RawRecord
impl RefUnwindSafe for RawRecord
impl Send for RawRecord
impl Sync for RawRecord
impl Unpin for RawRecord
impl UnwindSafe for RawRecord
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