pub enum BackendIncoming {
UdpListenResult {
bind: SocketAddr,
result: Result<(SocketAddr, usize), Error>,
},
UdpPacket {
slot: usize,
from: SocketAddr,
data: Buffer,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BackendIncoming
impl !RefUnwindSafe for BackendIncoming
impl Send for BackendIncoming
impl Sync for BackendIncoming
impl Unpin for BackendIncoming
impl !UnwindSafe for BackendIncoming
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