pub struct IanaToBcp47MapperBorrowed<'a> {
data: &'a IanaToBcp47MapV1<'a>,
}
👎Deprecated since 1.5.0: use
TimeZoneIdMapper
insteadExpand description
A borrowed wrapper around IANA-to-BCP47 time zone data, returned by
IanaToBcp47Mapper::as_borrowed()
. More efficient to query.
Fields§
§data: &'a IanaToBcp47MapV1<'a>
👎Deprecated since 1.5.0: use
TimeZoneIdMapper
insteadImplementations§
Source§impl<'a> IanaToBcp47MapperBorrowed<'a>
impl<'a> IanaToBcp47MapperBorrowed<'a>
Sourcepub fn get(&self, iana_id: &str) -> Option<TimeZoneBcp47Id>
pub fn get(&self, iana_id: &str) -> Option<TimeZoneBcp47Id>
Looks up a BCP-47 time zone identifier based on an ASCII-case-insensitive match for the given IANA time zone identifier.
This is the type of match specified in ECMAScript Temporal.
See examples in IanaToBcp47Mapper
.
Sourcepub fn get_bytes(&self, iana_id: &[u8]) -> Option<TimeZoneBcp47Id>
pub fn get_bytes(&self, iana_id: &[u8]) -> Option<TimeZoneBcp47Id>
Looks up a BCP-47 time zone identifier based on an ASCII-case-insensitive match for the given IANA time zone identifier.
This is the type of match specified in ECMAScript Temporal.
See examples in IanaToBcp47Mapper
.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for IanaToBcp47MapperBorrowed<'a>
impl<'a> RefUnwindSafe for IanaToBcp47MapperBorrowed<'a>
impl<'a> Send for IanaToBcp47MapperBorrowed<'a>
impl<'a> Sync for IanaToBcp47MapperBorrowed<'a>
impl<'a> Unpin for IanaToBcp47MapperBorrowed<'a>
impl<'a> UnwindSafe for IanaToBcp47MapperBorrowed<'a>
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