Struct der::asn1::PrintableString
source · [−]pub struct PrintableString<'a> { /* private fields */ }
Expand description
ASN.1 PrintableString
type.
Supports a subset the ASCII character set (desribed below).
For UTF-8, use Utf8String
instead. For the
full ASCII character set, use Ia5String
.
Supported characters
The following ASCII characters/ranges are supported:
A..Z
a..z
0..9
- “
\
(
)
+
,
-
.
/
:
=
?
Implementations
Trait Implementations
sourceimpl AsRef<[u8]> for PrintableString<'_>
impl AsRef<[u8]> for PrintableString<'_>
sourceimpl AsRef<str> for PrintableString<'_>
impl AsRef<str> for PrintableString<'_>
sourceimpl<'a> Clone for PrintableString<'a>
impl<'a> Clone for PrintableString<'a>
sourcefn clone(&self) -> PrintableString<'a>
fn clone(&self) -> PrintableString<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'a> Debug for PrintableString<'a>
impl<'a> Debug for PrintableString<'a>
sourceimpl<'a> DecodeValue<'a> for PrintableString<'a>
impl<'a> DecodeValue<'a> for PrintableString<'a>
sourceimpl<'a> Display for PrintableString<'a>
impl<'a> Display for PrintableString<'a>
sourceimpl<'a> EncodeValue for PrintableString<'a>
impl<'a> EncodeValue for PrintableString<'a>
sourceimpl<'a> From<&PrintableString<'a>> for PrintableString<'a>
impl<'a> From<&PrintableString<'a>> for PrintableString<'a>
sourcefn from(value: &PrintableString<'a>) -> PrintableString<'a>
fn from(value: &PrintableString<'a>) -> PrintableString<'a>
Converts to this type from the input type.
sourceimpl<'a> From<PrintableString<'a>> for Any<'a>
impl<'a> From<PrintableString<'a>> for Any<'a>
sourcefn from(printable_string: PrintableString<'a>) -> Any<'a>
fn from(printable_string: PrintableString<'a>) -> Any<'a>
Converts to this type from the input type.
sourceimpl<'a> From<PrintableString<'a>> for &'a [u8]
impl<'a> From<PrintableString<'a>> for &'a [u8]
sourcefn from(printable_string: PrintableString<'a>) -> &'a [u8]
fn from(printable_string: PrintableString<'a>) -> &'a [u8]
Converts to this type from the input type.
sourceimpl<'a> Ord for PrintableString<'a>
impl<'a> Ord for PrintableString<'a>
sourceimpl<'a> PartialEq<PrintableString<'a>> for PrintableString<'a>
impl<'a> PartialEq<PrintableString<'a>> for PrintableString<'a>
sourcefn eq(&self, other: &PrintableString<'a>) -> bool
fn eq(&self, other: &PrintableString<'a>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &PrintableString<'a>) -> bool
fn ne(&self, other: &PrintableString<'a>) -> bool
This method tests for !=
.
sourceimpl<'a> PartialOrd<PrintableString<'a>> for PrintableString<'a>
impl<'a> PartialOrd<PrintableString<'a>> for PrintableString<'a>
sourcefn partial_cmp(&self, other: &PrintableString<'a>) -> Option<Ordering>
fn partial_cmp(&self, other: &PrintableString<'a>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn 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
sourceimpl<'a> TryFrom<Any<'a>> for PrintableString<'a>
impl<'a> TryFrom<Any<'a>> for PrintableString<'a>
impl<'a> Copy for PrintableString<'a>
impl<'a> Eq for PrintableString<'a>
impl OrdIsValueOrd for PrintableString<'_>
impl<'a> StructuralEq for PrintableString<'a>
impl<'a> StructuralPartialEq for PrintableString<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for PrintableString<'a>
impl<'a> Send for PrintableString<'a>
impl<'a> Sync for PrintableString<'a>
impl<'a> Unpin for PrintableString<'a>
impl<'a> UnwindSafe for PrintableString<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more