Enum zng_ext_l10n::L10nArgument

source ·
pub enum L10nArgument {
    Txt(Txt),
    Number(FluentNumber),
}
Expand description

Represents an argument value for a localization message.

See L10nMessageBuilder::arg for more details.

Variants§

§

Txt(Txt)

String.

§

Number(FluentNumber)

Number, with optional style details.

Implementations§

source§

impl L10nArgument

source

pub fn fluent_value(&self) -> FluentValue<'_>

Borrow argument as a fluent value.

source

pub fn to_fluent_value(&self) -> FluentValue<'static>

Clone argument as a fluent value.

Trait Implementations§

source§

impl Clone for L10nArgument

source§

fn clone(&self) -> L10nArgument

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for L10nArgument

source§

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

Formats the value using the given formatter. Read more
source§

impl From<&'static str> for L10nArgument

source§

fn from(txt: &'static str) -> Self

Converts to this type from the input type.
source§

impl From<FluentNumber> for L10nArgument

source§

fn from(number: FluentNumber) -> Self

Converts to this type from the input type.
source§

impl From<String> for L10nArgument

source§

fn from(txt: String) -> Self

Converts to this type from the input type.
source§

impl From<Txt> for L10nArgument

source§

fn from(txt: Txt) -> Self

Converts to this type from the input type.
source§

impl From<bool> for L10nArgument

source§

fn from(b: bool) -> Self

Converts to this type from the input type.
source§

impl From<char> for L10nArgument

source§

fn from(t: char) -> Self

Converts to this type from the input type.
source§

impl From<f32> for L10nArgument

source§

fn from(number: f32) -> Self

Converts to this type from the input type.
source§

impl From<f64> for L10nArgument

source§

fn from(number: f64) -> Self

Converts to this type from the input type.
source§

impl From<i128> for L10nArgument

source§

fn from(number: i128) -> Self

Converts to this type from the input type.
source§

impl From<i16> for L10nArgument

source§

fn from(number: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for L10nArgument

source§

fn from(number: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for L10nArgument

source§

fn from(number: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for L10nArgument

source§

fn from(number: i8) -> Self

Converts to this type from the input type.
source§

impl From<isize> for L10nArgument

source§

fn from(number: isize) -> Self

Converts to this type from the input type.
source§

impl From<u128> for L10nArgument

source§

fn from(number: u128) -> Self

Converts to this type from the input type.
source§

impl From<u16> for L10nArgument

source§

fn from(number: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for L10nArgument

source§

fn from(number: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for L10nArgument

source§

fn from(number: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for L10nArgument

source§

fn from(number: u8) -> Self

Converts to this type from the input type.
source§

impl From<usize> for L10nArgument

source§

fn from(number: usize) -> Self

Converts to this type from the input type.
source§

impl IntoVar<L10nArgument> for &'static str

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for FluentNumber

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for String

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for Txt

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for bool

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for char

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for f32

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for f64

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for i128

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for i16

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for i32

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for i64

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for i8

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for isize

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for u128

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for u16

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for u32

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for u64

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for u8

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl IntoVar<L10nArgument> for usize

§

type Var = LocalVar<L10nArgument>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> Self::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
source§

impl PartialEq for L10nArgument

source§

fn eq(&self, other: &L10nArgument) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl IntoValue<L10nArgument> for &'static str

source§

impl IntoValue<L10nArgument> for FluentNumber

source§

impl IntoValue<L10nArgument> for String

source§

impl IntoValue<L10nArgument> for Txt

source§

impl IntoValue<L10nArgument> for bool

source§

impl IntoValue<L10nArgument> for char

source§

impl IntoValue<L10nArgument> for f32

source§

impl IntoValue<L10nArgument> for f64

source§

impl IntoValue<L10nArgument> for i128

source§

impl IntoValue<L10nArgument> for i16

source§

impl IntoValue<L10nArgument> for i32

source§

impl IntoValue<L10nArgument> for i64

source§

impl IntoValue<L10nArgument> for i8

source§

impl IntoValue<L10nArgument> for isize

source§

impl IntoValue<L10nArgument> for u128

source§

impl IntoValue<L10nArgument> for u16

source§

impl IntoValue<L10nArgument> for u32

source§

impl IntoValue<L10nArgument> for u64

source§

impl IntoValue<L10nArgument> for u8

source§

impl IntoValue<L10nArgument> for usize

source§

impl StructuralPartialEq for L10nArgument

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> AnyEq for T
where T: Any + PartialEq,

§

fn equals(&self, other: &(dyn Any + 'static)) -> bool

§

fn as_any(&self) -> &(dyn Any + 'static)

source§

impl<T> AnyVarValue for T
where T: VarValue,

source§

fn as_any(&self) -> &(dyn Any + 'static)

Access to dyn Any methods.
source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Access to mut dyn Any methods.
source§

fn clone_boxed(&self) -> Box<dyn AnyVarValue>

Clone the value.
source§

fn clone_boxed_var(&self) -> Box<dyn AnyVar>

Clone the value into a new boxed LocalVar<Self>.
source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Access to Box<dyn Any> methods.
source§

fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool

Gets if self equals other.
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FsChangeNote for T
where T: Debug + Any + Send + Sync,

source§

fn as_any(&self) -> &(dyn Any + 'static)

Access any.
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> IntoVar<T> for T
where T: VarValue,

§

type Var = LocalVar<T>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> <T as IntoVar<T>>::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> IntoValue<T> for T
where T: VarValue,

source§

impl<T> StateValue for T
where T: Any + Send + Sync,

source§

impl<T> VarValue for T
where T: Debug + Clone + PartialEq + Any + Send + Sync,