Struct urbit_http_api::subscription::Subscription[][src]

pub struct Subscription {
    pub channel_uid: String,
    pub creation_id: CreationID,
    pub app: String,
    pub path: String,
    pub message_list: Vec<String>,
}

Fields

channel_uid: String

The uid of the channel this subscription was made in

creation_id: CreationID

The id of the message that created this subscription

app: String

The app that is being subscribed to

path: String

The path of the app being subscribed to

message_list: Vec<String>

Implementations

impl Subscription[src]

pub fn add_to_message_list(&mut self, event: &Event) -> Option<u64>[src]

Parses an event and adds it to the message list if it’s id matches the Subscription creation_id. On success returns the length of the message list.

pub fn pop_message(&mut self) -> Option<String>[src]

Pops a message from the front of Subscription’s message_list. If no messages are left, returns None.

Trait Implementations

impl Clone for Subscription[src]

impl Debug for Subscription[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> Instrument for T[src]

impl<T> Instrument 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> 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>,