pub struct PrintableStringRef<'a> { /* private fields */ }
Expand description
ASN.1 PrintableString
type.
Supports a subset the ASCII character set (described below).
For UTF-8, use Utf8StringRef
instead.
For the full ASCII character set, use
Ia5StringRef
.
This is a zero-copy reference type which borrows from the input data.
§Supported characters
The following ASCII characters/ranges are supported:
A..Z
a..z
0..9
- “
\
(
)
+
,
-
.
/
:
=
?
Implementations§
Trait Implementations§
Source§impl<'a> AsRef<[u8]> for PrintableStringRef<'a>
impl<'a> AsRef<[u8]> for PrintableStringRef<'a>
Source§impl<'a> AsRef<str> for PrintableStringRef<'a>
impl<'a> AsRef<str> for PrintableStringRef<'a>
Source§impl<'a> Clone for PrintableStringRef<'a>
impl<'a> Clone for PrintableStringRef<'a>
Source§fn clone(&self) -> PrintableStringRef<'a>
fn clone(&self) -> PrintableStringRef<'a>
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<'a> Debug for PrintableStringRef<'a>
impl<'a> Debug for PrintableStringRef<'a>
Source§impl<'__der: 'a, 'a> DecodeValue<'__der> for PrintableStringRef<'a>
impl<'__der: 'a, 'a> DecodeValue<'__der> for PrintableStringRef<'a>
Source§impl<'a> Deref for PrintableStringRef<'a>
impl<'a> Deref for PrintableStringRef<'a>
Source§impl<'a> Display for PrintableStringRef<'a>
impl<'a> Display for PrintableStringRef<'a>
Source§impl<'a> EncodeValue for PrintableStringRef<'a>
impl<'a> EncodeValue for PrintableStringRef<'a>
Source§impl<'a> FixedTag for PrintableStringRef<'a>
impl<'a> FixedTag for PrintableStringRef<'a>
Source§impl<'a> From<&PrintableStringRef<'a>> for PrintableStringRef<'a>
impl<'a> From<&PrintableStringRef<'a>> for PrintableStringRef<'a>
Source§fn from(value: &PrintableStringRef<'a>) -> PrintableStringRef<'a>
fn from(value: &PrintableStringRef<'a>) -> PrintableStringRef<'a>
Converts to this type from the input type.
Source§impl<'a> From<PrintableStringRef<'a>> for AnyRef<'a>
impl<'a> From<PrintableStringRef<'a>> for AnyRef<'a>
Source§fn from(printable_string: PrintableStringRef<'a>) -> AnyRef<'a>
fn from(printable_string: PrintableStringRef<'a>) -> AnyRef<'a>
Converts to this type from the input type.
Source§impl<'a> From<PrintableStringRef<'a>> for PrintableString
Available on crate feature alloc
only.
impl<'a> From<PrintableStringRef<'a>> for PrintableString
Available on crate feature
alloc
only.Source§fn from(value: PrintableStringRef<'a>) -> PrintableString
fn from(value: PrintableStringRef<'a>) -> PrintableString
Converts to this type from the input type.
Source§impl<'a> Ord for PrintableStringRef<'a>
impl<'a> Ord for PrintableStringRef<'a>
Source§fn cmp(&self, other: &PrintableStringRef<'a>) -> Ordering
fn cmp(&self, other: &PrintableStringRef<'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 PrintableStringRef<'a>
impl<'a> PartialEq for PrintableStringRef<'a>
Source§impl<'a> PartialOrd for PrintableStringRef<'a>
impl<'a> PartialOrd for PrintableStringRef<'a>
Source§impl<'a> RefToOwned<'a> for PrintableStringRef<'a>
Available on crate feature alloc
only.
impl<'a> RefToOwned<'a> for PrintableStringRef<'a>
Available on crate feature
alloc
only.Source§type Owned = PrintableString
type Owned = PrintableString
The resulting type after obtaining ownership.
Source§fn ref_to_owned(&self) -> Self::Owned
fn ref_to_owned(&self) -> Self::Owned
Creates a new object taking ownership of the data
Source§impl<'__der: 'a, 'a> TryFrom<&'__der Any> for PrintableStringRef<'a>
Available on crate feature alloc
only.
impl<'__der: 'a, 'a> TryFrom<&'__der Any> for PrintableStringRef<'a>
Available on crate feature
alloc
only.Source§impl<'__der: 'a, 'a> TryFrom<AnyRef<'__der>> for PrintableStringRef<'a>
impl<'__der: 'a, 'a> TryFrom<AnyRef<'__der>> for PrintableStringRef<'a>
impl<'a> Copy for PrintableStringRef<'a>
impl<'a> Eq for PrintableStringRef<'a>
impl<'a> StructuralPartialEq for PrintableStringRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for PrintableStringRef<'a>
impl<'a> RefUnwindSafe for PrintableStringRef<'a>
impl<'a> Send for PrintableStringRef<'a>
impl<'a> Sync for PrintableStringRef<'a>
impl<'a> Unpin for PrintableStringRef<'a>
impl<'a> UnwindSafe for PrintableStringRef<'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§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
Source§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode for Twhere
T: EncodeValue + Tagged,
Source§fn encoded_len(&self) -> Result<Length, Error>
fn encoded_len(&self) -> Result<Length, Error>
Compute the length of this value in bytes when encoded as ASN.1 DER.
Source§fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Writer
.
Source§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8]>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8]>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.
impl<T> DecodeOwned for Twhere
T: for<'a> Decode<'a>,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 24 bytes