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