pub struct LocalizedText {
pub locale: UAString,
pub text: UAString,
}Expand description
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>(&self, stream: &mut S) -> Result<usize, StatusCode>where
S: Write,
fn encode<S>(&self, stream: &mut S) -> Result<usize, StatusCode>where
S: Write,
Encodes the instance to the write stream.
Source§fn decode<S>(
stream: &mut S,
decoding_options: &DecodingOptions,
) -> Result<LocalizedText, StatusCode>where
S: Read,
fn decode<S>(
stream: &mut S,
decoding_options: &DecodingOptions,
) -> Result<LocalizedText, StatusCode>where
S: Read,
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 · 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<LocalizedText, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LocalizedText, <__D as Deserializer<'de>>::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§fn from(value: &String) -> LocalizedText
fn from(value: &String) -> LocalizedText
Converts to this type from the input type.
Source§impl<'a> From<&'a str> for LocalizedText
impl<'a> From<&'a str> for LocalizedText
Source§fn from(value: &'a str) -> LocalizedText
fn from(value: &'a str) -> LocalizedText
Converts to this type from the input type.
Source§impl From<LocalizedText> for DataValue
impl From<LocalizedText> for DataValue
Source§fn from(v: LocalizedText) -> DataValue
fn from(v: LocalizedText) -> DataValue
Converts to this type from the input type.
Source§impl From<LocalizedText> for Variant
impl From<LocalizedText> for Variant
Source§fn from(v: LocalizedText) -> Variant
fn from(v: LocalizedText) -> Variant
Converts to this type from the input type.
Source§impl From<String> for LocalizedText
impl From<String> for LocalizedText
Source§fn from(value: String) -> LocalizedText
fn from(value: String) -> LocalizedText
Converts to this type from the input type.
Source§impl PartialEq for LocalizedText
impl PartialEq for LocalizedText
Source§impl Serialize for LocalizedText
impl Serialize for LocalizedText
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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 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