[][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 Eq for Addressed[src]

impl Copy for Addressed[src]

impl PartialEq<Addressed> for Addressed[src]

impl Clone for Addressed[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Addressed[src]

impl DerefMut for Addressed[src]

impl Deref for Addressed[src]

type Target = Dac

The resulting type after dereferencing.

impl Hash for Addressed[src]

default fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for Addressed

impl Sync for Addressed

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<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> Borrow for T where
    T: ?Sized
[src]

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

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

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.