pub enum ResponseOk {
Pong(Peer),
Response(Arc<InResponse>),
}Variants§
Pong(Peer)
Received a pong response to our ping request.
Response(Arc<InResponse>)
A remote peer successfully responded to our query
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ResponseOk
impl RefUnwindSafe for ResponseOk
impl Send for ResponseOk
impl Sync for ResponseOk
impl Unpin for ResponseOk
impl UnsafeUnpin for ResponseOk
impl UnwindSafe for ResponseOk
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