Struct der::asn1::PrintableString
source · pub struct PrintableString { /* 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
.
§Supported characters
The following ASCII characters/ranges are supported:
A..Z
a..z
0..9
- “
\
(
)
+
,
-
.
/
:
=
?
Implementations§
Trait Implementations§
source§impl AsRef<[u8]> for PrintableString
impl AsRef<[u8]> for PrintableString
source§impl AsRef<str> for PrintableString
impl AsRef<str> for PrintableString
source§impl Clone for PrintableString
impl Clone for PrintableString
source§fn clone(&self) -> PrintableString
fn clone(&self) -> PrintableString
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 Debug for PrintableString
impl Debug for PrintableString
source§impl<'__der> DecodeValue<'__der> for PrintableString
impl<'__der> DecodeValue<'__der> for PrintableString
source§impl Deref for PrintableString
impl Deref for PrintableString
source§impl Display for PrintableString
impl Display for PrintableString
source§impl EncodeValue for PrintableString
impl EncodeValue for PrintableString
source§impl<'a> From<&'a PrintableString> for AnyRef<'a>
impl<'a> From<&'a PrintableString> for AnyRef<'a>
source§fn from(printable_string: &'a PrintableString) -> AnyRef<'a>
fn from(printable_string: &'a PrintableString) -> AnyRef<'a>
Converts to this type from the input type.
source§impl<'a> From<PrintableStringRef<'a>> for PrintableString
impl<'a> From<PrintableStringRef<'a>> for PrintableString
source§fn from(value: PrintableStringRef<'a>) -> PrintableString
fn from(value: PrintableStringRef<'a>) -> PrintableString
Converts to this type from the input type.
source§impl Ord for PrintableString
impl Ord for PrintableString
source§fn cmp(&self, other: &PrintableString) -> Ordering
fn cmp(&self, other: &PrintableString) -> 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 OwnedToRef for PrintableString
impl OwnedToRef for PrintableString
§type Borrowed<'a> = PrintableStringRef<'a>
type Borrowed<'a> = PrintableStringRef<'a>
The resulting type referencing back to Self
source§fn owned_to_ref(&self) -> Self::Borrowed<'_>
fn owned_to_ref(&self) -> Self::Borrowed<'_>
Creates a new object referencing back to the self for storage
source§impl PartialEq for PrintableString
impl PartialEq for PrintableString
source§fn eq(&self, other: &PrintableString) -> bool
fn eq(&self, other: &PrintableString) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for PrintableString
impl PartialOrd for PrintableString
source§fn partial_cmp(&self, other: &PrintableString) -> Option<Ordering>
fn partial_cmp(&self, other: &PrintableString) -> Option<Ordering>
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 moresource§impl<'__der> TryFrom<&'__der Any> for PrintableString
impl<'__der> TryFrom<&'__der Any> for PrintableString
source§impl<'__der> TryFrom<AnyRef<'__der>> for PrintableString
impl<'__der> TryFrom<AnyRef<'__der>> for PrintableString
source§impl TryFrom<String> for PrintableString
impl TryFrom<String> for PrintableString
impl Eq for PrintableString
impl StructuralPartialEq for PrintableString
Auto Trait Implementations§
impl Freeze for PrintableString
impl RefUnwindSafe for PrintableString
impl Send for PrintableString
impl Sync for PrintableString
impl Unpin for PrintableString
impl UnwindSafe for PrintableString
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<'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.