pub struct OutboundSession {
pub state: ConnectionState,
pub remote_container_id: Option<String>,
pub sasl_mechanism: Option<SaslMechanism>,
}Expand description
Outbound-Verbindungs-Resultat.
Fields§
§state: ConnectionStateConnection-State (sollte Opened sein nach erfolgreichem
Handshake).
remote_container_id: Option<String>Container-Id, die der Broker im Open zurueckmeldete.
sasl_mechanism: Option<SaslMechanism>SASL-Mechanismus, mit dem authentifiziert wurde.
Trait Implementations§
Source§impl Clone for OutboundSession
impl Clone for OutboundSession
Source§fn clone(&self) -> OutboundSession
fn clone(&self) -> OutboundSession
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for OutboundSession
impl RefUnwindSafe for OutboundSession
impl Send for OutboundSession
impl Sync for OutboundSession
impl Unpin for OutboundSession
impl UnsafeUnpin for OutboundSession
impl UnwindSafe for OutboundSession
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more