pub struct Ia5String<'a> { /* private fields */ }
Expand description
ASN.1 IA5String
type.
Supports the International Alphabet No. 5 (IA5) character encoding, i.e. the lower 128 characters of the ASCII alphabet. (Note: IA5 is now technically known as the International Reference Alphabet or IRA as specified in the ITU-T’s T.50 recommendation).
For UTF-8, use Utf8String
.
Implementations
Trait Implementations
sourceimpl<'a> DecodeValue<'a> for Ia5String<'a>
impl<'a> DecodeValue<'a> for Ia5String<'a>
sourceimpl EncodeValue for Ia5String<'_>
impl EncodeValue for Ia5String<'_>
sourceimpl<'a> Ord for Ia5String<'a>
impl<'a> Ord for Ia5String<'a>
sourceimpl<'a> PartialOrd<Ia5String<'a>> for Ia5String<'a>
impl<'a> PartialOrd<Ia5String<'a>> for Ia5String<'a>
sourcefn partial_cmp(&self, other: &Ia5String<'a>) -> Option<Ordering>
fn partial_cmp(&self, other: &Ia5String<'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
impl<'a> Copy for Ia5String<'a>
impl<'a> Eq for Ia5String<'a>
impl OrdIsValueOrd for Ia5String<'_>
impl<'a> StructuralEq for Ia5String<'a>
impl<'a> StructuralPartialEq for Ia5String<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for Ia5String<'a>
impl<'a> Send for Ia5String<'a>
impl<'a> Sync for Ia5String<'a>
impl<'a> Unpin for Ia5String<'a>
impl<'a> UnwindSafe for Ia5String<'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