pub(super) struct ParsedTime<'i> {
input: Bytes<'i>,
time: Time,
extended: bool,
}
Expand description
The result of parsing a 24-hour civil time.
Fields§
§input: Bytes<'i>
The original input that the time was parsed from.
time: Time
The actual parsed time.
extended: bool
Whether the time was parsed in extended format or not.
Implementations§
Trait Implementations§
Source§impl<'i> Debug for ParsedTime<'i>
impl<'i> Debug for ParsedTime<'i>
Auto Trait Implementations§
impl<'i> Freeze for ParsedTime<'i>
impl<'i> RefUnwindSafe for ParsedTime<'i>
impl<'i> Send for ParsedTime<'i>
impl<'i> Sync for ParsedTime<'i>
impl<'i> Unpin for ParsedTime<'i>
impl<'i> UnwindSafe for ParsedTime<'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