[][src]Trait ether_dream::protocol::command::Command

pub trait Command {
    const START_BYTE: u8;
    fn start_byte(&self) -> u8 { ... }
}

Types that may be submitted as commands to the DAC.

Associated Constants

const START_BYTE: u8

The starting byte of the command.

Loading content...

Provided methods

fn start_byte(&self) -> u8

A provided method for producing the start byte. Useful for trait objects.

Loading content...

Implementations on Foreign Types

impl<'a, C> Command for &'a C where
    C: Command
[src]

Loading content...

Implementors

impl Command for Begin[src]

impl Command for ClearEmergencyStop[src]

impl Command for EmergencyStop[src]

impl Command for EmergencyStopAlt[src]

impl Command for Ping[src]

impl Command for PointRate[src]

impl Command for PrepareStream[src]

impl Command for Stop[src]

impl<'a> Command for Data<'a>[src]

Loading content...