Struct der::asn1::Utf8String
source · pub struct Utf8String<'a> { /* private fields */ }
Expand description
ASN.1 UTF8String
type.
Supports the full UTF-8 encoding.
Note that the Decodable
and
Encodable
traits are impl’d for Rust’s
str
primitive, which decodes/encodes as a Utf8String
.
You are free to use str
instead of this type, however it’s
still provided for explicitness in cases where it might be ambiguous with
other ASN.1 string encodings such as
PrintableString
.
Implementations§
Trait Implementations§
source§impl AsRef<[u8]> for Utf8String<'_>
impl AsRef<[u8]> for Utf8String<'_>
source§impl AsRef<str> for Utf8String<'_>
impl AsRef<str> for Utf8String<'_>
source§impl<'a> Clone for Utf8String<'a>
impl<'a> Clone for Utf8String<'a>
source§fn clone(&self) -> Utf8String<'a>
fn clone(&self) -> Utf8String<'a>
Returns a copy 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<'a> Debug for Utf8String<'a>
impl<'a> Debug for Utf8String<'a>
source§impl<'a> DecodeValue<'a> for Utf8String<'a>
impl<'a> DecodeValue<'a> for Utf8String<'a>
source§impl<'a> Display for Utf8String<'a>
impl<'a> Display for Utf8String<'a>
source§impl EncodeValue for Utf8String<'_>
impl EncodeValue for Utf8String<'_>
source§impl<'a> From<&Utf8String<'a>> for Utf8String<'a>
impl<'a> From<&Utf8String<'a>> for Utf8String<'a>
source§fn from(value: &Utf8String<'a>) -> Utf8String<'a>
fn from(value: &Utf8String<'a>) -> Utf8String<'a>
Converts to this type from the input type.
source§impl<'a> From<Utf8String<'a>> for &'a [u8]
impl<'a> From<Utf8String<'a>> for &'a [u8]
source§fn from(utf8_string: Utf8String<'a>) -> &'a [u8]
fn from(utf8_string: Utf8String<'a>) -> &'a [u8]
Converts to this type from the input type.
source§impl<'a> From<Utf8String<'a>> for Any<'a>
impl<'a> From<Utf8String<'a>> for Any<'a>
source§fn from(printable_string: Utf8String<'a>) -> Any<'a>
fn from(printable_string: Utf8String<'a>) -> Any<'a>
Converts to this type from the input type.
source§impl<'a> Ord for Utf8String<'a>
impl<'a> Ord for Utf8String<'a>
source§fn cmp(&self, other: &Utf8String<'a>) -> Ordering
fn cmp(&self, other: &Utf8String<'a>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<'a> PartialEq for Utf8String<'a>
impl<'a> PartialEq for Utf8String<'a>
source§impl<'a> PartialOrd for Utf8String<'a>
impl<'a> PartialOrd for Utf8String<'a>
source§impl<'a> TryFrom<Any<'a>> for Utf8String<'a>
impl<'a> TryFrom<Any<'a>> for Utf8String<'a>
impl<'a> Copy for Utf8String<'a>
impl<'a> Eq for Utf8String<'a>
impl OrdIsValueOrd for Utf8String<'_>
impl<'a> StructuralPartialEq for Utf8String<'a>
Auto Trait Implementations§
impl<'a> Freeze for Utf8String<'a>
impl<'a> RefUnwindSafe for Utf8String<'a>
impl<'a> Send for Utf8String<'a>
impl<'a> Sync for Utf8String<'a>
impl<'a> Unpin for Utf8String<'a>
impl<'a> UnwindSafe for Utf8String<'a>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)