[][src]Struct ntex_amqp::server::Link

pub struct Link<S> { /* fields omitted */ }

Methods

impl<S> Link<S>[src]

pub fn path(&self) -> &Path<ByteString>[src]

pub fn path_mut(&mut self) -> &mut Path<ByteString>[src]

pub fn frame(&self) -> &Attach[src]

pub fn state(&self) -> &S[src]

pub fn state_mut(&mut self) -> &mut S[src]

pub fn handle(&self) -> Handle[src]

pub fn session(&self) -> &Session[src]

pub fn session_mut(&mut self) -> &mut Session[src]

pub fn remote_config(&self) -> &Configuration[src]

Get remote connection configuration

Trait Implementations

impl<S> Clone for Link<S>[src]

impl<S> Debug for Link<S>[src]

Auto Trait Implementations

impl<S> !RefUnwindSafe for Link<S>

impl<S> !Send for Link<S>

impl<S> !Sync for Link<S>

impl<S> Unpin for Link<S>

impl<S> !UnwindSafe for Link<S>

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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