pub struct IncomingConnection<PRC>where
PRC: TProcessor,{
pub processor: Arc<PRC>,
pub i_prot: Box<dyn TInputProtocol + Send>,
pub o_prot: Box<dyn TOutputProtocol + Send>,
pub end_loop: bool,
}Fields§
§processor: Arc<PRC>§i_prot: Box<dyn TInputProtocol + Send>§o_prot: Box<dyn TOutputProtocol + Send>§end_loop: boolImplementations§
Source§impl<PRC> IncomingConnection<PRC>where
PRC: TProcessor,
impl<PRC> IncomingConnection<PRC>where
PRC: TProcessor,
Auto Trait Implementations§
impl<PRC> Freeze for IncomingConnection<PRC>
impl<PRC> !RefUnwindSafe for IncomingConnection<PRC>
impl<PRC> Send for IncomingConnection<PRC>
impl<PRC> !Sync for IncomingConnection<PRC>
impl<PRC> Unpin for IncomingConnection<PRC>
impl<PRC> !UnwindSafe for IncomingConnection<PRC>
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