[−][src]Struct pulsar::Connection
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]
url: Url,
auth_data: Option<Authentication>,
proxy_to_broker_url: Option<String>,
certificate_chain: &'_ [Certificate]
) -> Result<Connection, ConnectionError>
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]
__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,
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
impl !RefUnwindSafe for Connection
impl Send for Connection
impl Sync for Connection
impl Unpin for Connection
impl !UnwindSafe for Connection
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,