pub struct ExcelDateParts {
pub year: i32,
pub month: u32,
pub day: u32,
}Expand description
Calendar fields rendered by Excel, including display-only dates that
cannot be represented by chrono::NaiveDate.
Fields§
§year: i32§month: u32§day: u32Trait Implementations§
Source§impl Clone for ExcelDateParts
impl Clone for ExcelDateParts
Source§fn clone(&self) -> ExcelDateParts
fn clone(&self) -> ExcelDateParts
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 moreimpl Copy for ExcelDateParts
Source§impl Debug for ExcelDateParts
impl Debug for ExcelDateParts
impl Eq for ExcelDateParts
Source§impl PartialEq for ExcelDateParts
impl PartialEq for ExcelDateParts
impl StructuralPartialEq for ExcelDateParts
Auto Trait Implementations§
impl Freeze for ExcelDateParts
impl RefUnwindSafe for ExcelDateParts
impl Send for ExcelDateParts
impl Sync for ExcelDateParts
impl Unpin for ExcelDateParts
impl UnsafeUnpin for ExcelDateParts
impl UnwindSafe for ExcelDateParts
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