pub struct RecordDate {
pub year: u16,
pub month: u8,
pub day: u8,
}Expand description
Recording date associated with a timecode.
Fields§
§year: u16Year (e.g. 2026)
month: u8Month (1-12)
day: u8Day (1-31)
Implementations§
Source§impl RecordDate
impl RecordDate
Trait Implementations§
Source§impl Clone for RecordDate
impl Clone for RecordDate
Source§fn clone(&self) -> RecordDate
fn clone(&self) -> RecordDate
Returns a duplicate of the value. Read more
1.0.0 · 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 RecordDate
impl Debug for RecordDate
Source§impl PartialEq for RecordDate
impl PartialEq for RecordDate
impl Eq for RecordDate
impl StructuralPartialEq for RecordDate
Auto Trait Implementations§
impl Freeze for RecordDate
impl RefUnwindSafe for RecordDate
impl Send for RecordDate
impl Sync for RecordDate
impl Unpin for RecordDate
impl UnsafeUnpin for RecordDate
impl UnwindSafe for RecordDate
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