[][src]Trait graph_http::traits::DeltaLink

pub trait DeltaLink<RHS = Self> {
    pub fn delta_link(&self) -> Option<String>;

    pub fn delta<T: 'static + Send + NextLink>(
        &self,
        access_token: &str
    ) -> Option<Receiver<Delta<T>>>
    where
        T: Deserialize<'de>
, { ... } }

Required methods

Loading content...

Provided methods

pub fn delta<T: 'static + Send + NextLink>(
    &self,
    access_token: &str
) -> Option<Receiver<Delta<T>>> where
    T: Deserialize<'de>, 
[src]

Loading content...

Implementations on Foreign Types

impl DeltaLink<Value> for Value[src]

Loading content...

Implementors

impl<T> DeltaLink<Collection<T>> for Collection<T>[src]

Loading content...