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

pub struct Endpoint { /* fields omitted */ }

Methods

impl Endpoint[src]

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

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

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

pub fn xsecret(&mut self) -> Secret[src]

pub fn publish<F>(&mut self, shadow: Address, on_close: F) -> Result<u32, Error> where
    F: 'static + FnOnce(), 
[src]

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

pub fn disconnect(
    &mut self,
    route: RoutingKey,
    reason: DisconnectReason
) -> Result<(), Error>
[src]

pub fn reject(&mut self, q: ConnectRequest, error: String)[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,
    max_fragments: Option<u32>,
    f: F
) -> Result<u32, Error> 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

impl Drop for Endpoint[src]

impl Future<Result<Event, Error>> for Endpoint[src]

Auto Trait Implementations

impl !Send for Endpoint

impl !Sync for Endpoint

Blanket Implementations

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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