pub struct PartialDate {
pub day: Day,
pub month: Month,
pub year: Year,
}Expand description
A fully-resolved (possibly partial) date returned by the extractor.
Fields§
§day: Day§month: Month§year: YearTrait Implementations§
Auto Trait Implementations§
impl Freeze for PartialDate
impl RefUnwindSafe for PartialDate
impl Send for PartialDate
impl Sync for PartialDate
impl Unpin for PartialDate
impl UnsafeUnpin for PartialDate
impl UnwindSafe for PartialDate
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