[][src]Struct bcder::string::RestrictedString

pub struct RestrictedString<L: CharSet> { /* fields omitted */ }

A generic restricted character string.

Restricted character strings essentially are a sequence of characters from a specific character set mapped into a sequence of octets. In BER, these are in fact encoded just like an OctetString with a different tag. Consequently, this type is a wrapper around OctetString that makes sure that the sequence of octets is correctly encoded for the given character set.

As usual, you can parse a restricted character string from encoded data by way of the take_from and from_content methods. Alternatively, you can create a new value from a String or str via the from_string and from_str associated functions.

Conversely, a restricted character string can be converted into a string by way of the to_string and to_str methods.

In addition, the restricted character string mirrors the standard library’s string types by dereffing to OctetString and using the octet string’s iterators. In addition, the chars method provides an iterator over the characters encoded in the string.

Implementations

impl<L: CharSet> RestrictedString<L>[src]

pub fn new(os: OctetString) -> Result<Self, CharSetError>[src]

Creates a new character string from an octet string.

If the octet string contains octet sequences that are not valid for the character set, an appropriate error will be returned.

pub fn from_string(s: String) -> Result<Self, CharSetError>[src]

Creates a new character string from a String.

If the string’s internal representation is identical to the encoding of restricted character string, the string will be reused and no allocation occurs. Otherwise, a new bytes value is created.

If the string cannot be encoded in the character set, an error is returned.

pub fn chars(&self) -> RestrictedStringChars<'_, L>

Notable traits for RestrictedStringChars<'a, L>

impl<'a, L: CharSet> Iterator for RestrictedStringChars<'a, L> type Item = char;
[src]

Returns an iterator over the character in the character string.

pub fn into_bytes(self) -> Bytes[src]

Converts the string into its underlying bytes.

Note that the bytes value will contain the raw octets of the string which are not necessarily a valid Rust string.

impl<L: CharSet> RestrictedString<L>[src]

pub fn take_from<S: Source>(
    cons: &mut Constructed<'_, S>
) -> Result<Self, S::Err>
[src]

Takes a single character set value from constructed value content.

If there is no next value, if the next value does not have the natural tag appropriate for this character set implementation, or if it does not contain a correctly encoded character string, a malformed error is returned.

pub fn from_content<S: Source>(
    content: &mut Content<'_, S>
) -> Result<Self, S::Err>
[src]

Takes a character set from content.

pub fn encode(self) -> impl Values[src]

Returns a value encoder for the character string with the natural tag.

pub fn encode_as(self, tag: Tag) -> impl Values[src]

Returns a value encoder for the character string with the given tag.

pub fn encode_ref(&self) -> impl Values + '_[src]

Returns a value encoder for the character string with the natural tag.

pub fn encode_ref_as(&self, tag: Tag) -> impl Values + '_[src]

Returns a value encoder for the character string with the given tag.

Methods from Deref<Target = OctetString>

pub fn iter(&self) -> OctetStringIter<'_>

Notable traits for OctetStringIter<'a>

impl<'a> Iterator for OctetStringIter<'a> type Item = &'a [u8];
[src]

Returns an iterator over the parts of the octet string.

The iterator will produce &[u8] which, when appended produce the complete content of the octet string.

pub fn octets(&self) -> OctetStringOctets<'_>

Notable traits for OctetStringOctets<'a>

impl<'a> Iterator for OctetStringOctets<'a> type Item = u8;
[src]

Returns an iterator over the individual octets of the string.

pub fn as_slice(&self) -> Option<&[u8]>[src]

Returns a reference to the complete content if possible.

The method will return a bytes slice of the content if the octet string was encoded as a single primitive value or None otherwise.

This is guaranteed to return some slice if the value was produced by decoding in DER mode.

pub fn to_bytes(&self) -> Bytes[src]

Produces a bytes value with the string’s content.

If the octet string was encoded as a single primitive value, the method will simply clone the content. Otherwise it will produce an entirely new bytes value from the concatenated content of all the primitive values.

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

Returns the length of the content.

This is not the length of the encoded value but of the actual octet string.

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

Returns whether the content is empty.

pub fn to_source(&self) -> OctetStringSource[src]

Creates a source that can be used to decode the string’s content.

The returned value contains a clone of the string (which, because of the use of Bytes is rather cheap) that implements the Source trait and thus can be used to decode the string’s content.

pub fn encode_ref(&self) -> impl Values + '_[src]

Returns a value encoder for the octet string using the natural tag.

pub fn encode_ref_as(&self, tag: Tag) -> impl Values + '_[src]

Returns a value encoder for the octet string using the given tag.

Trait Implementations

impl<L: CharSet> AsRef<OctetString> for RestrictedString<L>[src]

impl<L: Clone + CharSet> Clone for RestrictedString<L>[src]

impl<L: Debug + CharSet> Debug for RestrictedString<L>[src]

impl<L: CharSet> Deref for RestrictedString<L>[src]

type Target = OctetString

The resulting type after dereferencing.

impl<L: CharSet> Display for RestrictedString<L>[src]

impl<L: CharSet> Eq for RestrictedString<L>[src]

impl<L: CharSet> FromStr for RestrictedString<L>[src]

type Err = CharSetError

The associated error which can be returned from parsing.

impl<L: CharSet> Hash for RestrictedString<L>[src]

impl<'a, L: CharSet> IntoIterator for &'a RestrictedString<L>[src]

type Item = &'a [u8]

The type of the elements being iterated over.

type IntoIter = OctetStringIter<'a>

Which kind of iterator are we turning this into?

impl<L: CharSet> Ord for RestrictedString<L>[src]

impl<L: CharSet> PartialEq<RestrictedString<L>> for RestrictedString<L>[src]

impl<L: CharSet> PartialOrd<RestrictedString<L>> for RestrictedString<L>[src]

Auto Trait Implementations

impl<L> RefUnwindSafe for RestrictedString<L> where
    L: RefUnwindSafe
[src]

impl<L> Send for RestrictedString<L> where
    L: Send
[src]

impl<L> Sync for RestrictedString<L> where
    L: Sync
[src]

impl<L> Unpin for RestrictedString<L> where
    L: Unpin
[src]

impl<L> UnwindSafe for RestrictedString<L> where
    L: UnwindSafe
[src]

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> 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.