pub enum StructureBodyElement {
D(f64, f64),
L(u32, u32, f64, f64, f64, u32, f64, f64, u32),
M(u32, u32, f64, f64, f64, u32, f64, f64, u32, u32),
F(u32, u32, f64, u32, Option<u32>, FBlock),
A(u32, u32, f64, f64, f64, f64, u32, f64, f64),
B(u32, u32, f64, f64, f64, u32, f64, f64, u32, u32),
Q(u32, u32, f64, f64, f64, u32, f64, f64, u32),
G(u32, u32, f64, f64, f64, f64, u32),
Y(u32, u32, f64, u32, u32, FBlock),
Z(u32, f64, f64, f64, u32, f64, String),
H(u32, u32, f64, f64, f64, f64, f64, f64, f64, f64, BZLSegments),
}
Expand description
A Structure Body Element
Variants§
D(f64, f64)
L(u32, u32, f64, f64, f64, u32, f64, f64, u32)
M(u32, u32, f64, f64, f64, u32, f64, f64, u32, u32)
F(u32, u32, f64, u32, Option<u32>, FBlock)
A(u32, u32, f64, f64, f64, f64, u32, f64, f64)
B(u32, u32, f64, f64, f64, u32, f64, f64, u32, u32)
Q(u32, u32, f64, f64, f64, u32, f64, f64, u32)
G(u32, u32, f64, f64, f64, f64, u32)
Y(u32, u32, f64, u32, u32, FBlock)
Z(u32, f64, f64, f64, u32, f64, String)
H(u32, u32, f64, f64, f64, f64, f64, f64, f64, f64, BZLSegments)
Trait Implementations§
Source§impl Clone for StructureBodyElement
impl Clone for StructureBodyElement
Source§fn clone(&self) -> StructureBodyElement
fn clone(&self) -> StructureBodyElement
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 StructureBodyElement
impl Debug for StructureBodyElement
Source§impl Display for StructureBodyElement
impl Display for StructureBodyElement
Source§impl PartialEq for StructureBodyElement
impl PartialEq for StructureBodyElement
impl StructuralPartialEq for StructureBodyElement
Auto Trait Implementations§
impl Freeze for StructureBodyElement
impl RefUnwindSafe for StructureBodyElement
impl Send for StructureBodyElement
impl Sync for StructureBodyElement
impl Unpin for StructureBodyElement
impl UnwindSafe for StructureBodyElement
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