pub struct Record {
pub record_code: String,
pub schema: RecordSchema,
pub values: Vec<Value>,
}Expand description
A parsed line of a .FEC file.
See https://github.com/NickCrews/feco3/wiki for more info
Fields§
§record_code: StringThe record type code that begins the line in the .fec file, eg “SA11”
schema: RecordSchema§values: Vec<Value>May contain fewer or more values than the schema expects.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Record
impl RefUnwindSafe for Record
impl Send for Record
impl Sync for Record
impl Unpin for Record
impl UnwindSafe for Record
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