pub struct ParsedDate {
pub date: Date,
pub format: ParsedFormat,
}Expand description
The parsing result of Date::parse_str, which is basically a SAC13 Date with attached parsing information.
Fields§
§date: DateThe parsed SAC13 date.
format: ParsedFormatParsing information about the parsed input string.
Trait Implementations§
Source§impl Clone for ParsedDate
impl Clone for ParsedDate
Source§fn clone(&self) -> ParsedDate
fn clone(&self) -> ParsedDate
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 ParsedDate
impl Debug for ParsedDate
Source§impl Hash for ParsedDate
impl Hash for ParsedDate
Source§impl PartialEq for ParsedDate
impl PartialEq for ParsedDate
impl Eq for ParsedDate
impl StructuralPartialEq for ParsedDate
Auto Trait Implementations§
impl Freeze for ParsedDate
impl RefUnwindSafe for ParsedDate
impl Send for ParsedDate
impl Sync for ParsedDate
impl Unpin for ParsedDate
impl UnsafeUnpin for ParsedDate
impl UnwindSafe for ParsedDate
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