Struct sep2_common::packages::primitives::String32
source · pub struct String32(pub String);
Expand description
Character string of max length 32. In order to limit internal storage, implementations SHALL reduce the length of strings using multi-byte characters so that the string may be stored using “maxLength” octets in the given encoding.
Tuple Fields§
§0: String
Trait Implementations§
source§impl Ord for String32
impl Ord for String32
source§impl PartialEq<String32> for String32
impl PartialEq<String32> for String32
source§impl PartialOrd<String32> for String32
impl PartialOrd<String32> for String32
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for String32
impl StructuralEq for String32
impl StructuralPartialEq for String32
Auto Trait Implementations§
impl RefUnwindSafe for String32
impl Send for String32
impl Sync for String32
impl Unpin for String32
impl UnwindSafe for String32
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