Enum netidx_netproto::publisher::To[][src]

pub enum To {
    Subscribe {
        path: Path,
        resolver: SocketAddr,
        timestamp: u64,
        permissions: u32,
        token: Bytes,
    },
    Unsubscribe(Id),
    Write(IdValuebool),
}

Variants

Subscribe

Subscribe to the specified value, if it is not available the result will be NoSuchValue. The optional security token is a proof from the resolver server that this subscription is permitted. In the case of an anonymous connection this proof will be empty.

Fields of Subscribe

path: Pathresolver: SocketAddrtimestamp: u64permissions: u32token: Bytes
Unsubscribe(Id)

Unsubscribe from the specified value, this will always result in an Unsubscibed message even if you weren’t ever subscribed to the value, or it doesn’t exist.

Write(IdValuebool)

Send a write to the specified value.

Trait Implementations

impl Clone for To[src]

impl Debug for To[src]

impl Pack for To[src]

impl PartialEq<To> for To[src]

impl StructuralPartialEq for To[src]

Auto Trait Implementations

impl RefUnwindSafe for To

impl Send for To

impl Sync for To

impl Unpin for To

impl UnwindSafe for To

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> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,