pub struct Utf8StringRef<'a> { /* private fields */ }
Expand description
ASN.1 UTF8String
type.
Supports the full UTF-8 encoding.
Note that the Decode
and Encode
traits are impl’d for Rust’s str
primitive, which
decodes/encodes as a Utf8StringRef
.
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
PrintableStringRef
.
This is a zero-copy reference type which borrows from the input data.
Implementations§
Trait Implementations§
Source§impl<'a> AsRef<[u8]> for Utf8StringRef<'a>
impl<'a> AsRef<[u8]> for Utf8StringRef<'a>
Source§impl<'a> AsRef<str> for Utf8StringRef<'a>
impl<'a> AsRef<str> for Utf8StringRef<'a>
Source§impl<'a> Clone for Utf8StringRef<'a>
impl<'a> Clone for Utf8StringRef<'a>
Source§fn clone(&self) -> Utf8StringRef<'a>
fn clone(&self) -> Utf8StringRef<'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 Utf8StringRef<'a>
impl<'a> Debug for Utf8StringRef<'a>
Source§impl<'__der: 'a, 'a> DecodeValue<'__der> for Utf8StringRef<'a>
impl<'__der: 'a, 'a> DecodeValue<'__der> for Utf8StringRef<'a>
Source§impl<'a> Deref for Utf8StringRef<'a>
impl<'a> Deref for Utf8StringRef<'a>
Source§impl<'a> Display for Utf8StringRef<'a>
impl<'a> Display for Utf8StringRef<'a>
Source§impl<'a> EncodeValue for Utf8StringRef<'a>
impl<'a> EncodeValue for Utf8StringRef<'a>
Source§impl<'a> From<&Utf8StringRef<'a>> for Utf8StringRef<'a>
impl<'a> From<&Utf8StringRef<'a>> for Utf8StringRef<'a>
Source§fn from(value: &Utf8StringRef<'a>) -> Utf8StringRef<'a>
fn from(value: &Utf8StringRef<'a>) -> Utf8StringRef<'a>
Converts to this type from the input type.
Source§impl<'a> From<Utf8StringRef<'a>> for AnyRef<'a>
impl<'a> From<Utf8StringRef<'a>> for AnyRef<'a>
Source§fn from(utf_string: Utf8StringRef<'a>) -> AnyRef<'a>
fn from(utf_string: Utf8StringRef<'a>) -> AnyRef<'a>
Converts to this type from the input type.
Source§impl<'a> Ord for Utf8StringRef<'a>
impl<'a> Ord for Utf8StringRef<'a>
Source§fn cmp(&self, other: &Utf8StringRef<'a>) -> Ordering
fn cmp(&self, other: &Utf8StringRef<'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 Utf8StringRef<'a>
impl<'a> PartialEq for Utf8StringRef<'a>
Source§impl<'a> PartialOrd for Utf8StringRef<'a>
impl<'a> PartialOrd for Utf8StringRef<'a>
Source§impl<'__der: 'a, 'a> TryFrom<AnyRef<'__der>> for Utf8StringRef<'a>
impl<'__der: 'a, 'a> TryFrom<AnyRef<'__der>> for Utf8StringRef<'a>
impl<'a> Copy for Utf8StringRef<'a>
impl<'a> Eq for Utf8StringRef<'a>
impl<'a> StructuralPartialEq for Utf8StringRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for Utf8StringRef<'a>
impl<'a> RefUnwindSafe for Utf8StringRef<'a>
impl<'a> Send for Utf8StringRef<'a>
impl<'a> Sync for Utf8StringRef<'a>
impl<'a> Unpin for Utf8StringRef<'a>
impl<'a> UnwindSafe for Utf8StringRef<'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