Struct dsmr5::types::OctetString[][src]

pub struct OctetString<'a>(_);

Octet strings as defined by tag 9.

Implementations

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

pub fn parse(body: &'a str, length: usize) -> Result<OctetString<'a>>[src]

Parse a fixed length string from an OBIS body.

pub fn parse_max(body: &'a str, max_length: usize) -> Result<OctetString<'a>>[src]

Parse a variable length string with a max length from an OBIS body.

pub fn as_octets(&'a self) -> impl Iterator<Item = Result<u8>> + 'a[src]

Yield this octet string as the underlying octets.

Trait Implementations

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

Auto Trait Implementations

impl<'a> Send for OctetString<'a>[src]

impl<'a> Sync for OctetString<'a>[src]

impl<'a> Unpin for OctetString<'a>[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, 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.