[][src]Struct pulsar::Connection

pub struct Connection { /* fields omitted */ }

Implementations

impl Connection[src]

pub async fn new<'_, Exe: Executor + ?Sized>(
    url: Url,
    auth_data: Option<Authentication>,
    proxy_to_broker_url: Option<String>,
    certificate_chain: &'_ [Certificate]
) -> Result<Connection, ConnectionError>
[src]

pub async fn connect<Exe: Executor + ?Sized, S>(
    __arg0: S,
    auth_data: Option<Authentication>,
    proxy_to_broker_url: Option<String>
) -> Result<ConnectionSender, ConnectionError> where
    S: Stream<Item = Result<Message, ConnectionError>>,
    S: Sink<Message, Error = ConnectionError>,
    S: Send + Unpin + 'static, 
[src]

pub fn error(&self) -> Option<ConnectionError>[src]

pub fn is_valid(&self) -> bool[src]

pub fn url(&self) -> &Url[src]

pub fn sender(&self) -> &ConnectionSender[src]

Chain to send a message, e.g. conn.sender().send_ping()

Trait Implementations

impl Drop for Connection[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, U> Into<U> for T where
    U: From<T>, 
[src]

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