pub struct AuxRow<'a> {
pub values: Vec<Cow<'a, str>>,
pub subdata: Vec<AuxSubData<'a>>,
}Expand description
One value row of a DATA section, with any SUBDATA blocks that follow it.
Fields§
§values: Vec<Cow<'a, str>>One value per declared field, quotes removed. A bare or fully quoted value borrows the source text; only a value spliced from several quoted runs is owned.
subdata: Vec<AuxSubData<'a>>Trait Implementations§
Source§impl<'a> PartialEq for AuxRow<'a>
impl<'a> PartialEq for AuxRow<'a>
impl<'a> StructuralPartialEq for AuxRow<'a>
Auto Trait Implementations§
impl<'a> Freeze for AuxRow<'a>
impl<'a> RefUnwindSafe for AuxRow<'a>
impl<'a> Send for AuxRow<'a>
impl<'a> Sync for AuxRow<'a>
impl<'a> Unpin for AuxRow<'a>
impl<'a> UnsafeUnpin for AuxRow<'a>
impl<'a> UnwindSafe for AuxRow<'a>
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