[][src]Struct dsmr5::Telegram

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.

Methods

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>

impl<'a> Sync for Telegram<'a>

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

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