Struct sep2_common::packages::primitives::String16
source · pub struct String16(pub String);
Expand description
Character string of max length 16. 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 String16
impl Ord for String16
source§impl PartialEq<String16> for String16
impl PartialEq<String16> for String16
source§impl PartialOrd<String16> for String16
impl PartialOrd<String16> for String16
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 String16
impl StructuralEq for String16
impl StructuralPartialEq for String16
Auto Trait Implementations§
impl RefUnwindSafe for String16
impl Send for String16
impl Sync for String16
impl Unpin for String16
impl UnwindSafe for String16
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