Struct dsmr5::Telegram[][src]

pub struct Telegram<'a> {
    pub checksum: u16,
    pub prefix: &'a str,
    pub identification: &'a str,
    // some fields omitted
}

A P1 telegram from the metering system as per section 6.12.

Fields

checksum: u16

The verified CRC16 checksum of the telegram data.

prefix: &'a str

The first 3 characters of the datagram.

identification: &'a str

Metering system identification.

Implementations

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

pub fn objects(&self) -> impl Iterator<Item = Result<OBIS<'a>>>[src]

Parse the COSEM objects, yielding them as part of an iterator.

Trait Implementations

impl<'a> From<&'_ Telegram<'a>> for Result<State>[src]

Auto Trait Implementations

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

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

impl<'a> Unpin for Telegram<'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.