[][src]Struct ether_dream::dac::Addressed

pub struct Addressed {
    pub mac_address: MacAddress,
    pub dac: Dac,
}

A DAC along with its broadcasted MAC address.

This type can be used as though it is a Dac in many places as it implements Deref<Target = Dac>

Fields

mac_address: MacAddress

The unique MAC address associated with the DAC.

This may be used to distinguish between multiple DACs broadcasting on a network.

dac: Dac

The state of the DAC itself.

Methods

impl Addressed[src]

pub fn from_broadcast(
    dac_broadcast: &DacBroadcast
) -> Result<Self, ProtocolError>
[src]

Create an Addressed DAC from a received DacBroadcast.

Methods from Deref<Target = Dac>

pub fn update_status(&mut self, status: &DacStatus) -> Result<(), ProtocolError>[src]

Update the inner status given a new protocol representation.

Trait Implementations

impl Clone for Addressed[src]

impl Copy for Addressed[src]

impl Debug for Addressed[src]

impl Deref for Addressed[src]

type Target = Dac

The resulting type after dereferencing.

impl DerefMut for Addressed[src]

impl Eq for Addressed[src]

impl Hash for Addressed[src]

impl PartialEq<Addressed> for Addressed[src]

impl StructuralEq for Addressed[src]

impl StructuralPartialEq for Addressed[src]

Auto Trait Implementations

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