pub struct OutgoingConnection {
pub reader: Source<Result<Bytes>>,
pub writer: UnboundedSender<Bytes>,
pub remote_addr: SocketAddr,
}Fields§
§reader: Source<Result<Bytes>>§writer: UnboundedSender<Bytes>§remote_addr: SocketAddrAuto Trait Implementations§
impl Freeze for OutgoingConnection
impl !RefUnwindSafe for OutgoingConnection
impl Send for OutgoingConnection
impl !Sync for OutgoingConnection
impl Unpin for OutgoingConnection
impl UnsafeUnpin for OutgoingConnection
impl !UnwindSafe for OutgoingConnection
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