[][src]Enum anachro_icd::component::ControlType

pub enum ControlType<'a> {
    RegisterComponent(ComponentInfo<'a>),
    RegisterPubSubShortId(PubSubShort<'a>),
}

Control Message Type

The specific kind of Control Message

Variants

RegisterComponent(ComponentInfo<'a>)

Register Component

This message is used to establish/reset the connection between a given client and an Arbitrator

RegisterPubSubShortId(PubSubShort<'a>)

Register PubSubShortID

This message is used to register a path "short code", which can use a u16 instead of a full utf-8 path to save message bandwidth

Trait Implementations

impl<'a> Debug for ControlType<'a>[src]

impl<'de: 'a, 'a> Deserialize<'de> for ControlType<'a>[src]

impl<'a> Eq for ControlType<'a>[src]

impl<'a> PartialEq<ControlType<'a>> for ControlType<'a>[src]

impl<'a> Serialize for ControlType<'a>[src]

impl<'a> StructuralEq for ControlType<'a>[src]

impl<'a> StructuralPartialEq for ControlType<'a>[src]

Auto Trait Implementations

impl<'a> Send for ControlType<'a>

impl<'a> Sync for ControlType<'a>

impl<'a> Unpin for ControlType<'a>

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.