Skip to main content

Addressed

Struct Addressed 

Source
pub struct Addressed {
    pub mac_address: MacAddress,
    pub dac: Dac,
}
Expand description

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.

Implementations§

Source§

impl Addressed

Source

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

Create an Addressed DAC from a received DacBroadcast.

Examples found in repository?
examples/enumerate_dacs.rs (line 26)
9fn main() {
10    println!("Searching for Ether Dream DACs...");
11
12    let mut dacs = HashMap::new();
13    let three_secs = time::Duration::from_secs(3);
14    let mut rx = ether_dream::recv_dac_broadcasts().expect("failed to bind to UDP socket");
15    rx.set_timeout(Some(three_secs))
16        .expect("failed to set timeout on UDP socket");
17    let loop_start = time::Instant::now();
18    while loop_start.elapsed() < three_secs {
19        let (dac_broadcast, source_addr) = match rx.next_broadcast() {
20            Ok(dac) => dac,
21            Err(e) => match e.kind() {
22                io::ErrorKind::WouldBlock | io::ErrorKind::TimedOut => continue,
23                _ => panic!("an IO error occurred: {}", e),
24            },
25        };
26        let dac::Addressed { mac_address, dac } = dac::Addressed::from_broadcast(&dac_broadcast)
27            .expect("failed to interpret DAC status from received broadcast");
28        if dacs.insert(mac_address, (dac, source_addr)).is_none() {
29            println!("Discovered new DAC \"{}\"...", mac_address);
30        }
31    }
32
33    if dacs.is_empty() {
34        println!("No Ether Dream DACs found on the network.");
35    } else {
36        println!("Discovered the following Ether Dream DACs on the network:");
37        for (i, (mac, (dac, source_addr))) in dacs.into_iter().enumerate() {
38            println!(
39                "{}.\n  MAC address: \"{}\"\n  Network address: \"{}\"\n  {:?}",
40                i + 1,
41                mac,
42                source_addr,
43                dac
44            );
45        }
46    }
47}

Methods from Deref<Target = Dac>§

Source

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

Update the inner status given a new protocol representation.

Trait Implementations§

Source§

impl Clone for Addressed

Source§

fn clone(&self) -> Addressed

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Addressed

Source§

impl Debug for Addressed

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Deref for Addressed

Source§

type Target = Dac

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl DerefMut for Addressed

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
Source§

impl Eq for Addressed

Source§

impl Hash for Addressed

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

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

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for Addressed

Source§

fn eq(&self, other: &Addressed) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for Addressed

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.