Struct der::Ia5String[][src]

pub struct Ia5String<'a> { /* fields omitted */ }
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

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]

fn as_ref(&self) -> &[u8][src]

Performs the conversion.

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

fn as_ref(&self) -> &str[src]

Performs the conversion.

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

fn clone(&self) -> Ia5String<'a>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

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

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

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

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

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

fn encoded_len(&self) -> Result<Length>[src]

Compute the length of this value in bytes when encoded as ASN.1 DER.

fn encode(&self, encoder: &mut Encoder<'_>) -> Result<()>[src]

Encode this value as ASN.1 DER using the provided Encoder.

fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8]>[src]

Encode this value to the provided byte slice, returning a sub-slice containing the encoded message. Read more

fn encode_to_vec(&self, buf: &mut Vec<u8>) -> Result<Length>[src]

This is supported on crate feature alloc only.

Encode this message as ASN.1 DER, appending it to the provided byte vector. Read more

fn to_vec(&self) -> Result<Vec<u8>>[src]

This is supported on crate feature alloc only.

Serialize this message as a byte vector.

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

fn from(value: &Ia5String<'a>) -> Ia5String<'a>[src]

Performs the conversion.

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

fn from(printable_string: Ia5String<'a>) -> Any<'a>[src]

Performs the conversion.

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

fn cmp(&self, other: &Ia5String<'a>) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

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

fn eq(&self, other: &Ia5String<'a>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Ia5String<'a>) -> bool[src]

This method tests for !=.

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

fn partial_cmp(&self, other: &Ia5String<'a>) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

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

const TAG: Tag[src]

ASN.1 tag

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

type Error = Error

The type returned in the event of a conversion error.

fn try_from(any: Any<'a>) -> Result<Ia5String<'a>>[src]

Performs the conversion.

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

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

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

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

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]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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

pub default fn to_string(&self) -> String[src]

Converts the given value to a String. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.