[][src]Struct carrier::endpoint::Endpoint

pub struct Endpoint { /* fields omitted */ }

Methods

impl Endpoint[src]

pub fn new(
    poll: Poll,
    token: Token,
    noise: Transport,
    identity: Identity,
    socket: UdpSocket,
    addr: SocketAddr,
    secret: Secret
) -> Self
[src]

pub fn broker(&self) -> RoutingKey[src]

pub fn publish(&mut self, shadow: Address)[src]

pub fn connect(&mut self, target: Identity) -> Result<(), Error>[src]

pub fn reject(&mut self, q: ConnectRequest)[src]

pub fn accept_outgoing<F: 'static + StreamFactory>(
    &mut self,
    q: ConnectResponse,
    sf: F
) -> Result<RoutingKey, Error>
[src]

pub fn accept_incomming<F: 'static + StreamFactory>(
    &mut self,
    q: ConnectRequest,
    sf: F
)
[src]

pub fn open<F>(&mut self, route: RoutingKey, headers: Headers, f: F) where
    F: FnOnce(Poll, Stream) -> Task<()>, 
[src]

pub fn stream<M: Into<Vec<u8>>>(&mut self, route: RoutingKey, stream: u32, m: M)[src]

Trait Implementations

Auto Trait Implementations

impl !Send for Endpoint

impl !Sync for Endpoint

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self

impl<R, X> Future for X where
    X: Generator<Yield = Again, Return = R> + Unpin
[src]