[][src]Enum anachro_server::PubSubPath

pub enum PubSubPath<'a> {
    Long(ManagedString<'a, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B1>, B1>>),
    Short(u16),
}

Publish/Subscribe Path - Short or Long

Variants

Long(ManagedString<'a, UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B1>, B1>, B1>, B1>, B1>>)

A long form, UTF-8 Path

Short(u16)

A short form, 'memoized' path

Pre-registered with the server

Trait Implementations

impl<'a> Clone for PubSubPath<'a>[src]

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

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

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

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

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

Auto Trait Implementations

impl<'a> Send for PubSubPath<'a>

impl<'a> Sync for PubSubPath<'a>

impl<'a> Unpin for PubSubPath<'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.