pub(super) struct ParsedDate<'i> {
input: Bytes<'i>,
date: Date,
}
Expand description
The result of parsing a Gregorian calendar civil date.
Fields§
§input: Bytes<'i>
The original input that the date was parsed from.
date: Date
The actual parsed date.
Trait Implementations§
Source§impl<'i> Debug for ParsedDate<'i>
impl<'i> Debug for ParsedDate<'i>
Auto Trait Implementations§
impl<'i> Freeze for ParsedDate<'i>
impl<'i> RefUnwindSafe for ParsedDate<'i>
impl<'i> Send for ParsedDate<'i>
impl<'i> Sync for ParsedDate<'i>
impl<'i> Unpin for ParsedDate<'i>
impl<'i> UnwindSafe for ParsedDate<'i>
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