pub struct DatumSpecification {
pub fixed_datum_records: Vec<FixedDatum>,
pub variable_datum_records: Vec<VariableDatum>,
}Expand description
6.2.18 Datum Specification record
Fields§
§fixed_datum_records: Vec<FixedDatum>§variable_datum_records: Vec<VariableDatum>Implementations§
Source§impl DatumSpecification
impl DatumSpecification
pub fn new( fixed_datum_records: Vec<FixedDatum>, variable_datum_records: Vec<VariableDatum>, ) -> Self
Trait Implementations§
Source§impl Clone for DatumSpecification
impl Clone for DatumSpecification
Source§fn clone(&self) -> DatumSpecification
fn clone(&self) -> DatumSpecification
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DatumSpecification
impl Debug for DatumSpecification
Source§impl Default for DatumSpecification
impl Default for DatumSpecification
Source§fn default() -> DatumSpecification
fn default() -> DatumSpecification
Returns the “default value” for a type. Read more
Source§impl PartialEq for DatumSpecification
impl PartialEq for DatumSpecification
Source§fn eq(&self, other: &DatumSpecification) -> bool
fn eq(&self, other: &DatumSpecification) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DatumSpecification
Auto Trait Implementations§
impl Freeze for DatumSpecification
impl RefUnwindSafe for DatumSpecification
impl Send for DatumSpecification
impl Sync for DatumSpecification
impl Unpin for DatumSpecification
impl UnsafeUnpin for DatumSpecification
impl UnwindSafe for DatumSpecification
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