Struct ed25519_dalek::pkcs8::spki::der::asn1::PrintableString
pub struct PrintableString { /* private fields */ }
Available on crate feature
pkcs8
only.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§
§impl PrintableString
impl PrintableString
Trait Implementations§
§impl AsRef<[u8]> for PrintableString
impl AsRef<[u8]> for PrintableString
§impl AsRef<str> for PrintableString
impl AsRef<str> for PrintableString
§impl Clone for PrintableString
impl Clone for PrintableString
§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 more§impl Debug for PrintableString
impl Debug for PrintableString
§impl<'__der> DecodeValue<'__der> for PrintableString
impl<'__der> DecodeValue<'__der> for PrintableString
§fn decode_value<R>(
reader: &mut R,
header: Header
) -> Result<PrintableString, Error>where
R: Reader<'__der>,
fn decode_value<R>(
reader: &mut R,
header: Header
) -> Result<PrintableString, Error>where
R: Reader<'__der>,
Attempt to decode this message using the provided
Reader
.§impl Deref for PrintableString
impl Deref for PrintableString
§impl Display for PrintableString
impl Display for PrintableString
§impl EncodeValue for PrintableString
impl EncodeValue for PrintableString
§impl<'a> From<&'a PrintableString> for AnyRef<'a>
impl<'a> From<&'a PrintableString> for AnyRef<'a>
§fn from(printable_string: &'a PrintableString) -> AnyRef<'a>
fn from(printable_string: &'a PrintableString) -> AnyRef<'a>
Converts to this type from the input type.
§impl<'a> From<PrintableStringRef<'a>> for PrintableString
impl<'a> From<PrintableStringRef<'a>> for PrintableString
§fn from(value: PrintableStringRef<'a>) -> PrintableString
fn from(value: PrintableStringRef<'a>) -> PrintableString
Converts to this type from the input type.
§impl Ord for PrintableString
impl Ord for PrintableString
§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
§fn owned_to_ref(&self) -> <PrintableString as OwnedToRef>::Borrowed<'_>
fn owned_to_ref(&self) -> <PrintableString as OwnedToRef>::Borrowed<'_>
Creates a new object referencing back to the self for storage
§impl PartialEq for PrintableString
impl PartialEq for PrintableString
§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 ==
.§impl PartialOrd for PrintableString
impl PartialOrd for PrintableString
§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 more§impl<'__der> TryFrom<&'__der Any> for PrintableString
Available on crate feature alloc
only.
impl<'__der> TryFrom<&'__der Any> for PrintableString
Available on crate feature
alloc
only.§impl<'__der> TryFrom<AnyRef<'__der>> for PrintableString
impl<'__der> TryFrom<AnyRef<'__der>> for PrintableString
§impl TryFrom<String> for PrintableString
impl TryFrom<String> for PrintableString
impl Eq for PrintableString
impl StructuralPartialEq for PrintableString
Auto Trait Implementations§
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
§impl<'a, T> Choice<'a> for T
impl<'a, T> Choice<'a> for T
§fn can_decode(tag: Tag) -> bool
fn can_decode(tag: Tag) -> bool
Is the provided
Tag
decodable as a variant of this CHOICE
?§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode for Twhere
T: EncodeValue + Tagged,
§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.
§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
.
§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.