Struct der::Ia5String[][src]

pub struct Ia5String<'a> { /* fields omitted */ }

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

impl<'a> Ia5String<'a>[src]

pub fn new<T: ?Sized>(input: &'a T) -> Result<Self> where
    T: AsRef<[u8]>, 
[src]

Create a new IA5String.

pub fn as_str(&self) -> &'a str[src]

Borrow the string as a str.

pub fn as_bytes(&self) -> &'a [u8][src]

Borrow the string as bytes.

pub fn len(&self) -> Length[src]

Get the length of the inner byte slice.

pub fn is_empty(&self) -> bool[src]

Is the inner string empty?

Trait Implementations

impl AsRef<[u8]> for Ia5String<'_>[src]

impl AsRef<str> for Ia5String<'_>[src]

impl<'a> Clone for Ia5String<'a>[src]

impl<'a> Copy for Ia5String<'a>[src]

impl<'a> Debug for Ia5String<'a>[src]

impl<'a> Display for Ia5String<'a>[src]

impl<'a> Encodable for Ia5String<'a>[src]

impl<'a> Eq for Ia5String<'a>[src]

impl<'a> From<&'_ Ia5String<'a>> for Ia5String<'a>[src]

impl<'a> From<Ia5String<'a>> for Any<'a>[src]

impl<'a> Ord for Ia5String<'a>[src]

impl<'a> PartialEq<Ia5String<'a>> for Ia5String<'a>[src]

impl<'a> PartialOrd<Ia5String<'a>> for Ia5String<'a>[src]

impl<'a> StructuralEq for Ia5String<'a>[src]

impl<'a> StructuralPartialEq for Ia5String<'a>[src]

impl<'a> Tagged for Ia5String<'a>[src]

impl<'a> TryFrom<Any<'a>> for Ia5String<'a>[src]

type Error = Error

The type returned in the event of a conversion error.

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.