pub struct AuxObject<'a> {
pub object_type: String,
pub data_name: Option<String>,
pub fields: Vec<String>,
pub create_if_not_found: Option<String>,
pub rows: Vec<AuxRow<'a>>,
}Expand description
One DATA section: an object type, its declared field list, and the rows.
Fields§
§object_type: String§data_name: Option<String>Optional section name (callable from LoadData scripts).
fields: Vec<String>Declared fields, in order, location suffixes preserved (BusNum:1).
create_if_not_found: Option<String>CREATE_IF_NOT_FOUND argument when the header carried one
(YES/NO/PROMPT).
rows: Vec<AuxRow<'a>>Implementations§
Trait Implementations§
Source§impl<'a> PartialEq for AuxObject<'a>
impl<'a> PartialEq for AuxObject<'a>
impl<'a> StructuralPartialEq for AuxObject<'a>
Auto Trait Implementations§
impl<'a> Freeze for AuxObject<'a>
impl<'a> RefUnwindSafe for AuxObject<'a>
impl<'a> Send for AuxObject<'a>
impl<'a> Sync for AuxObject<'a>
impl<'a> Unpin for AuxObject<'a>
impl<'a> UnsafeUnpin for AuxObject<'a>
impl<'a> UnwindSafe for AuxObject<'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