Struct DataIdentifierBorrowed

struct DataIdentifierBorrowed<'a> { ... }

The borrowed version of a DataIdentifierCow.

Fields

marker_attributes: &'a DataMarkerAttributes

Marker-specific request attributes

locale: &'a DataLocale

The CLDR locale

Implementations

impl<'a> DataIdentifierBorrowed<'a>

fn for_locale(locale: &'a DataLocale) -> Self

Creates a DataIdentifierBorrowed for a borrowed DataLocale.

fn for_marker_attributes(marker_attributes: &'a DataMarkerAttributes) -> Self

Creates a DataIdentifierBorrowed for a borrowed DataMarkerAttributes.

fn for_marker_attributes_and_locale(marker_attributes: &'a DataMarkerAttributes, locale: &'a DataLocale) -> Self

Creates a DataIdentifierBorrowed for a borrowed DataMarkerAttributes and DataLocale.

impl Display for DataIdentifierBorrowed<'_>

fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result

impl<'a> Clone for DataIdentifierBorrowed<'a>

fn clone(self: &Self) -> DataIdentifierBorrowed<'a>

impl<'a> Copy for DataIdentifierBorrowed<'a>

impl<'a> Debug for DataIdentifierBorrowed<'a>

fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result

impl<'a> Default for DataIdentifierBorrowed<'a>

fn default() -> DataIdentifierBorrowed<'a>

impl<'a> Eq for DataIdentifierBorrowed<'a>

impl<'a> Freeze for DataIdentifierBorrowed<'a>

impl<'a> PartialEq for DataIdentifierBorrowed<'a>

fn eq(self: &Self, other: &DataIdentifierBorrowed<'a>) -> bool

impl<'a> RefUnwindSafe for DataIdentifierBorrowed<'a>

impl<'a> Send for DataIdentifierBorrowed<'a>

impl<'a> StructuralPartialEq for DataIdentifierBorrowed<'a>

impl<'a> Sync for DataIdentifierBorrowed<'a>

impl<'a> Unpin for DataIdentifierBorrowed<'a>

impl<'a> UnsafeUnpin for DataIdentifierBorrowed<'a>

impl<'a> UnwindSafe for DataIdentifierBorrowed<'a>

impl<T> Any for DataIdentifierBorrowed<'a>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for DataIdentifierBorrowed<'a>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for DataIdentifierBorrowed<'a>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> CloneToUninit for DataIdentifierBorrowed<'a>

unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)

impl<T> ErasedDestructor for DataIdentifierBorrowed<'a>

impl<T> From for DataIdentifierBorrowed<'a>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> ToOwned for DataIdentifierBorrowed<'a>

fn to_owned(self: &Self) -> T
fn clone_into(self: &Self, target: &mut T)

impl<T> ToString for DataIdentifierBorrowed<'a>

fn to_string(self: &Self) -> String

impl<T, U> Into for DataIdentifierBorrowed<'a>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for DataIdentifierBorrowed<'a>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for DataIdentifierBorrowed<'a>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>