pub struct InboundConnection<THandler>where
THandler: InboundStreamHandler,{ /* private fields */ }Implementations§
Source§impl<THandler> InboundConnection<THandler>where
THandler: InboundStreamHandler,
impl<THandler> InboundConnection<THandler>where
THandler: InboundStreamHandler,
pub fn new( muxer: StreamMuxerBox, handler: THandler, max_negotiating_inbound_streams: usize, idle_timeout: Duration, ) -> Self
pub fn close( self, ) -> (Pin<Box<dyn Stream<Item = <THandler as ConnectionHandler>::Event> + Send>>, Closing<StreamMuxerBox>)
pub fn handle_action(&mut self, action: THandler::Action)
pub fn poll( &mut self, cx: &mut Context<'_>, ) -> Poll<Result<THandler::Event, ConnectionError>>
Trait Implementations§
impl<THandler> Unpin for InboundConnection<THandler>where
THandler: InboundStreamHandler,
Auto Trait Implementations§
impl<THandler> !Freeze for InboundConnection<THandler>
impl<THandler> !RefUnwindSafe for InboundConnection<THandler>
impl<THandler> !Sync for InboundConnection<THandler>
impl<THandler> !UnwindSafe for InboundConnection<THandler>
impl<THandler> Send for InboundConnection<THandler>
impl<THandler> UnsafeUnpin for InboundConnection<THandler>where
THandler: UnsafeUnpin,
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
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more