pub(super) struct ParsedTimeZone<'i> {
input: Bytes<'i>,
kind: ParsedTimeZoneKind<'i>,
}
Fields§
§input: Bytes<'i>
The original input that the time zone was parsed from.
kind: ParsedTimeZoneKind<'i>
The kind of time zone parsed.
Implementations§
Source§impl<'i> ParsedTimeZone<'i>
impl<'i> ParsedTimeZone<'i>
pub(super) fn into_time_zone( self, db: &TimeZoneDatabase, ) -> Result<TimeZone, Error>
Trait Implementations§
Source§impl<'i> Debug for ParsedTimeZone<'i>
impl<'i> Debug for ParsedTimeZone<'i>
Auto Trait Implementations§
impl<'i> Freeze for ParsedTimeZone<'i>
impl<'i> RefUnwindSafe for ParsedTimeZone<'i>
impl<'i> Send for ParsedTimeZone<'i>
impl<'i> Sync for ParsedTimeZone<'i>
impl<'i> Unpin for ParsedTimeZone<'i>
impl<'i> UnwindSafe for ParsedTimeZone<'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