pub struct IcuArgument {
pub name: String,
pub kind: IcuArgumentKind,
}Expand description
One data argument reference discovered in an ICU message.
Fields§
§name: StringArgument name referenced by the message.
kind: IcuArgumentKindStructural role of the argument.
Trait Implementations§
Source§impl Clone for IcuArgument
impl Clone for IcuArgument
Source§fn clone(&self) -> IcuArgument
fn clone(&self) -> IcuArgument
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IcuArgument
impl Debug for IcuArgument
impl Eq for IcuArgument
Source§impl PartialEq for IcuArgument
impl PartialEq for IcuArgument
Source§fn eq(&self, other: &IcuArgument) -> bool
fn eq(&self, other: &IcuArgument) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IcuArgument
Auto Trait Implementations§
impl Freeze for IcuArgument
impl RefUnwindSafe for IcuArgument
impl Send for IcuArgument
impl Sync for IcuArgument
impl Unpin for IcuArgument
impl UnsafeUnpin for IcuArgument
impl UnwindSafe for IcuArgument
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