pub struct BackendConnection<'i> {
pub fd: i64,
pub name: &'i str,
pub remote_address: Option<Address<'i>>,
pub local_address: Address<'i>,
}Fields§
§fd: i64§name: &'i str§remote_address: Option<Address<'i>>§local_address: Address<'i>Trait Implementations§
Source§impl<'i> Debug for BackendConnection<'i>
impl<'i> Debug for BackendConnection<'i>
Source§impl<'de: 'i, 'i> Deserialize<'de> for BackendConnection<'i>
impl<'de: 'i, 'i> Deserialize<'de> for BackendConnection<'i>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<'i> Freeze for BackendConnection<'i>
impl<'i> RefUnwindSafe for BackendConnection<'i>
impl<'i> Send for BackendConnection<'i>
impl<'i> Sync for BackendConnection<'i>
impl<'i> Unpin for BackendConnection<'i>
impl<'i> UnwindSafe for BackendConnection<'i>
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