pub struct DayOfYearInfo {
pub day_of_year: u32,
pub days_in_year: u32,
pub prev_year: FormattableYear,
pub days_in_prev_year: u32,
pub next_year: FormattableYear,
}
Expand description
A struct containing various details about the position of the day within a year. It is returned
Fields
day_of_year: u32
The current day of the year, 1-based.
days_in_year: u32
The number of days in a year.
prev_year: FormattableYear
The previous year.
days_in_prev_year: u32
The number of days in the previous year.
next_year: FormattableYear
The next year.
Trait Implementations
sourceimpl Clone for DayOfYearInfo
impl Clone for DayOfYearInfo
sourcefn clone(&self) -> DayOfYearInfo
fn clone(&self) -> DayOfYearInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DayOfYearInfo
impl Debug for DayOfYearInfo
sourceimpl PartialEq<DayOfYearInfo> for DayOfYearInfo
impl PartialEq<DayOfYearInfo> for DayOfYearInfo
sourcefn eq(&self, other: &DayOfYearInfo) -> bool
fn eq(&self, other: &DayOfYearInfo) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DayOfYearInfo) -> bool
fn ne(&self, other: &DayOfYearInfo) -> bool
This method tests for !=
.
impl Copy for DayOfYearInfo
impl StructuralPartialEq for DayOfYearInfo
Auto Trait Implementations
impl RefUnwindSafe for DayOfYearInfo
impl Send for DayOfYearInfo
impl Sync for DayOfYearInfo
impl Unpin for DayOfYearInfo
impl UnwindSafe for DayOfYearInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more