pub struct LocalizedText {
pub locale: UAString,
pub text: UAString,
}Expand description
JSON encoding Locale The Localeportion of LocalizedTextvalues shall be encoded as a JSON string
Text The Textportion of LocalizedTextvalues shall be encoded as a JSON string. A human readable text with an optional locale identifier.
Fields§
§locale: UAStringThe locale. Omitted from stream if null or empty
text: UAStringThe text in the specified locale. Omitted frmo stream if null or empty.
Implementations§
Source§impl LocalizedText
impl LocalizedText
pub fn new(locale: &str, text: &str) -> LocalizedText
pub fn null() -> LocalizedText
Trait Implementations§
Source§impl BinaryEncoder<LocalizedText> for LocalizedText
impl BinaryEncoder<LocalizedText> for LocalizedText
Source§fn byte_len(&self) -> usize
fn byte_len(&self) -> usize
Returns the exact byte length of the structure as it would be if
encode were called.
This may be called prior to writing to ensure the correct amount of space is available.Source§fn encode<S: Write>(&self, stream: &mut S) -> EncodingResult<usize>
fn encode<S: Write>(&self, stream: &mut S) -> EncodingResult<usize>
Encodes the instance to the write stream.
Source§fn decode<S: Read>(
stream: &mut S,
decoding_options: &DecodingOptions,
) -> EncodingResult<Self>
fn decode<S: Read>( stream: &mut S, decoding_options: &DecodingOptions, ) -> EncodingResult<Self>
Decodes an instance from the read stream. The decoding options contains restrictions set by
the server / client on the length of strings, arrays etc. If these limits are exceeded the
implementation should return with a
BadDecodingError as soon as possible.fn encode_to_vec(&self) -> Vec<u8> ⓘ
Source§impl Clone for LocalizedText
impl Clone for LocalizedText
Source§fn clone(&self) -> LocalizedText
fn clone(&self) -> LocalizedText
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 LocalizedText
impl Debug for LocalizedText
Source§impl Default for LocalizedText
impl Default for LocalizedText
Source§fn default() -> LocalizedText
fn default() -> LocalizedText
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LocalizedText
impl<'de> Deserialize<'de> for LocalizedText
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for LocalizedText
impl Display for LocalizedText
Source§impl From<&String> for LocalizedText
impl From<&String> for LocalizedText
Source§impl<'a> From<&'a str> for LocalizedText
impl<'a> From<&'a str> for LocalizedText
Source§impl From<LocalizedText> for DataValue
impl From<LocalizedText> for DataValue
Source§fn from(v: LocalizedText) -> Self
fn from(v: LocalizedText) -> Self
Converts to this type from the input type.
Source§impl From<LocalizedText> for Variant
impl From<LocalizedText> for Variant
Source§fn from(v: LocalizedText) -> Self
fn from(v: LocalizedText) -> Self
Converts to this type from the input type.
Source§impl From<String> for LocalizedText
impl From<String> for LocalizedText
Source§impl PartialEq for LocalizedText
impl PartialEq for LocalizedText
Source§fn eq(&self, other: &LocalizedText) -> bool
fn eq(&self, other: &LocalizedText) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LocalizedText
impl Serialize for LocalizedText
impl StructuralPartialEq for LocalizedText
Auto Trait Implementations§
impl Freeze for LocalizedText
impl RefUnwindSafe for LocalizedText
impl Send for LocalizedText
impl Sync for LocalizedText
impl Unpin for LocalizedText
impl UnsafeUnpin for LocalizedText
impl UnwindSafe for LocalizedText
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