[][src]Struct ether_dream::dac::Dac

pub struct Dac {
    pub hw_revision: u16,
    pub sw_revision: u16,
    pub buffer_capacity: u16,
    pub max_point_rate: u32,
    pub status: Status,
}

A simple abstraction around a single Ether Dream DAC.

This type monitors the multiple state machines described within the protocol and provides access to information about the Ether Dream hardware and software implementations.

Fields

hw_revision: u16

This is undocumented in the official protocol but seems to represent a version number for the hardware in use by the DAC.

sw_revision: u16

This is undocumented in the official protocol but seems to represent the version of the protocol implementation. As of writing this, this is hardcoded as 2 in the original source.

buffer_capacity: u16

The maximum number of points that the DAC may buffer at once.

max_point_rate: u32

The maximum rate at which the DAC may process buffered points.

status: Status

A more rust-esque version of the ether_dream::protocol::DacState.

The DAC sends its status with each DacBroadcast and DacResponse.

Methods

impl Dac[src]

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 Dac[src]

impl Copy for Dac[src]

impl Debug for Dac[src]

impl Eq for Dac[src]

impl Hash for Dac[src]

impl PartialEq<Dac> for Dac[src]

impl StructuralEq for Dac[src]

impl StructuralPartialEq for Dac[src]

Auto Trait Implementations

impl RefUnwindSafe for Dac

impl Send for Dac

impl Sync for Dac

impl Unpin for Dac

impl UnwindSafe for Dac

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.