Stubbed UdpSocket struct, added Socket structs

This commit is contained in:
Jonah Dahlquist 2019-08-13 20:03:02 -05:00 committed by Jonah Dahlquist
commit b30e4d0d34
7 changed files with 100 additions and 15 deletions

5
src/udp/mod.rs Normal file
View file

@ -0,0 +1,5 @@
use crate::socket::Socket;
pub struct UdpSocket<SocketImpl: Socket> {
pub socket: SocketImpl,
}