pub struct AuxRow {
pub values: Vec<String>,
pub subdata: Vec<AuxSubData>,
}Expand description
One value row of a DATA section, with any SUBDATA blocks that follow it.
Fields§
§values: Vec<String>One value per declared field, quotes removed.
subdata: Vec<AuxSubData>Trait Implementations§
impl StructuralPartialEq for AuxRow
Auto Trait Implementations§
impl Freeze for AuxRow
impl RefUnwindSafe for AuxRow
impl Send for AuxRow
impl Sync for AuxRow
impl Unpin for AuxRow
impl UnsafeUnpin for AuxRow
impl UnwindSafe for AuxRow
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