pub struct Path<'a> {
pub local_addr: SocketAddress<'a>,
pub local_cid: ConnectionId<'a>,
pub remote_addr: SocketAddress<'a>,
pub remote_cid: ConnectionId<'a>,
pub id: u64,
pub is_active: bool,
}Fields§
§local_addr: SocketAddress<'a>§local_cid: ConnectionId<'a>§remote_addr: SocketAddress<'a>§remote_cid: ConnectionId<'a>§id: u64§is_active: boolTrait Implementations§
impl<'a> Copy for Path<'a>
Auto Trait Implementations§
impl<'a> Freeze for Path<'a>
impl<'a> RefUnwindSafe for Path<'a>
impl<'a> Send for Path<'a>
impl<'a> Sync for Path<'a>
impl<'a> Unpin for Path<'a>
impl<'a> UnwindSafe for Path<'a>
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