[][src]Struct cometd::client::Client

pub struct Client<T> {
    pub handler: Arc<T>,
    // some fields omitted
}

A cometd client

Fields

handler: Arc<T>

The event handler

Implementations

impl Client<DefaultHandler>[src]

pub async fn connect<'_>(url: &'_ str) -> CometResult<Self>[src]

Connect to the url with the default handler

impl<T: Handler + 'static> Client<T>[src]

pub async fn connect_with_handler<'_>(
    url: &'_ str,
    handler: T
) -> CometResult<Self>
[src]

Connect to the url with the given handler

pub async fn run<'_>(&'_ mut self) -> CometResult<()>[src]

Run client

pub async fn graceful_shutdown<'_>(&'_ self) -> CometResult<()>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for Client<T>

impl<T> Send for Client<T> where
    T: Send + Sync

impl<T> Sync for Client<T> where
    T: Send + Sync

impl<T> Unpin for Client<T>

impl<T> !UnwindSafe for Client<T>

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> 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.

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