pub struct DateField {
pub digits: [Option<u8>; 2],
pub qualifier: Qualifier,
}Expand description
A two-digit month or day slot; None digits are unspecified (X).
Fields§
§digits: [Option<u8>; 2]Tens digit then ones digit; None is an X.
qualifier: QualifierQualification applying to this component.
Implementations§
Trait Implementations§
impl Copy for DateField
impl Eq for DateField
impl StructuralPartialEq for DateField
Auto Trait Implementations§
impl Freeze for DateField
impl RefUnwindSafe for DateField
impl Send for DateField
impl Sync for DateField
impl Unpin for DateField
impl UnsafeUnpin for DateField
impl UnwindSafe for DateField
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