Struct icu_provider::DataIdentifierBorrowed
source · #[non_exhaustive]pub struct DataIdentifierBorrowed<'a> {
pub marker_attributes: &'a DataMarkerAttributes,
pub locale: &'a DataLocale,
}
Expand description
The borrowed version of a DataIdentifierCow
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.marker_attributes: &'a DataMarkerAttributes
Marker-specific request attributes
locale: &'a DataLocale
The CLDR locale
Implementations§
source§impl<'a> DataIdentifierBorrowed<'a>
impl<'a> DataIdentifierBorrowed<'a>
sourcepub fn for_locale(locale: &'a DataLocale) -> Self
pub fn for_locale(locale: &'a DataLocale) -> Self
Creates a DataIdentifierBorrowed
for a borrowed DataLocale
.
sourcepub fn for_marker_attributes(
marker_attributes: &'a DataMarkerAttributes,
) -> Self
pub fn for_marker_attributes( marker_attributes: &'a DataMarkerAttributes, ) -> Self
Creates a DataIdentifierBorrowed
for a borrowed DataMarkerAttributes
.
sourcepub fn for_marker_attributes_and_locale(
marker_attributes: &'a DataMarkerAttributes,
locale: &'a DataLocale,
) -> Self
pub fn for_marker_attributes_and_locale( marker_attributes: &'a DataMarkerAttributes, locale: &'a DataLocale, ) -> Self
Creates a DataIdentifierBorrowed
for a borrowed DataMarkerAttributes
and DataLocale
.
sourcepub fn into_owned(&self) -> DataIdentifierCow<'static>
pub fn into_owned(&self) -> DataIdentifierCow<'static>
Converts this DataIdentifierBorrowed
into a [DataIdentifierCow<'static>
].
sourcepub fn as_cow(&self) -> DataIdentifierCow<'a>
pub fn as_cow(&self) -> DataIdentifierCow<'a>
Borrows this DataIdentifierBorrowed
as a [DataIdentifierCow<'a>
].
Trait Implementations§
source§impl<'a> Clone for DataIdentifierBorrowed<'a>
impl<'a> Clone for DataIdentifierBorrowed<'a>
source§fn clone(&self) -> DataIdentifierBorrowed<'a>
fn clone(&self) -> DataIdentifierBorrowed<'a>
Returns a copy 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<'a> Debug for DataIdentifierBorrowed<'a>
impl<'a> Debug for DataIdentifierBorrowed<'a>
source§impl<'a> Default for DataIdentifierBorrowed<'a>
impl<'a> Default for DataIdentifierBorrowed<'a>
source§fn default() -> DataIdentifierBorrowed<'a>
fn default() -> DataIdentifierBorrowed<'a>
Returns the “default value” for a type. Read more
source§impl Display for DataIdentifierBorrowed<'_>
impl Display for DataIdentifierBorrowed<'_>
source§impl<'a> PartialEq for DataIdentifierBorrowed<'a>
impl<'a> PartialEq for DataIdentifierBorrowed<'a>
impl<'a> Copy for DataIdentifierBorrowed<'a>
impl<'a> Eq for DataIdentifierBorrowed<'a>
impl<'a> StructuralPartialEq for DataIdentifierBorrowed<'a>
Auto Trait Implementations§
impl<'a> Freeze for DataIdentifierBorrowed<'a>
impl<'a> RefUnwindSafe for DataIdentifierBorrowed<'a>
impl<'a> Send for DataIdentifierBorrowed<'a>
impl<'a> Sync for DataIdentifierBorrowed<'a>
impl<'a> Unpin for DataIdentifierBorrowed<'a>
impl<'a> UnwindSafe for DataIdentifierBorrowed<'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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more