[][src]Struct ether_dream::protocol::command::ClearEmergencyStop

pub struct ClearEmergencyStop;

If the light engine was in E-Stop state due to an emergency stop command (either from a local stop condition or over the network), this command resets it to Ready.

It is ACKed if the DAC was previously in E-Stop.

Otherwise it is replied to with a NAK - Invalid.

If the condition that caused the emergency stop is still active (e.g. E-Stop input still asserted, temperature still out of bounds, etc) a NAK - Stop Condition is sent.

Trait Implementations

impl Clone for ClearEmergencyStop[src]

impl Command for ClearEmergencyStop[src]

impl Copy for ClearEmergencyStop[src]

impl Debug for ClearEmergencyStop[src]

impl Eq for ClearEmergencyStop[src]

impl<'a> From<ClearEmergencyStop> for Command<'a>[src]

impl Hash for ClearEmergencyStop[src]

impl PartialEq<ClearEmergencyStop> for ClearEmergencyStop[src]

impl ReadFromBytes for ClearEmergencyStop[src]

impl SizeBytes for ClearEmergencyStop[src]

impl StructuralEq for ClearEmergencyStop[src]

impl StructuralPartialEq for ClearEmergencyStop[src]

impl WriteToBytes for ClearEmergencyStop[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.