pub struct NewIncomingConnection {
pub server_addr: SocketAddr,
pub internal_addrs: [SocketAddr; 10],
pub request_time: i64,
pub accepted_time: i64,
}Fields§
§server_addr: SocketAddr§internal_addrs: [SocketAddr; 10]§request_time: i64§accepted_time: i64Trait Implementations§
Source§impl Clone for NewIncomingConnection
impl Clone for NewIncomingConnection
Source§fn clone(&self) -> NewIncomingConnection
fn clone(&self) -> NewIncomingConnection
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for NewIncomingConnection
impl RefUnwindSafe for NewIncomingConnection
impl Send for NewIncomingConnection
impl Sync for NewIncomingConnection
impl Unpin for NewIncomingConnection
impl UnsafeUnpin for NewIncomingConnection
impl UnwindSafe for NewIncomingConnection
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