pub enum RawEntity {
Simple {
id: u64,
name: String,
attributes: Vec<Attribute>,
span: Span,
},
Complex {
id: u64,
parts: Vec<RawEntityPart>,
span: Span,
},
}Expand description
A parsed Part 21 entity instance (one line in the DATA section).
Variants§
Implementations§
Trait Implementations§
impl StructuralPartialEq for RawEntity
Auto Trait Implementations§
impl Freeze for RawEntity
impl RefUnwindSafe for RawEntity
impl Send for RawEntity
impl Sync for RawEntity
impl Unpin for RawEntity
impl UnsafeUnpin for RawEntity
impl UnwindSafe for RawEntity
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