mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-10 01:28:41 -06:00
no drop check is needed
This commit is contained in:
parent
e6ec24a55c
commit
65ecf0de62
|
@ -7,8 +7,8 @@ use crate::{BINCODE_CONFIG, packet::ClientPacket};
|
|||
|
||||
pub struct Client<S, R> where S: Encode + Decode, R: Encode + Decode {
|
||||
socket: UdpSocket,
|
||||
_s: PhantomData<S>,
|
||||
_r: PhantomData<R>,
|
||||
_s: PhantomData<*const S>,
|
||||
_r: PhantomData<*const R>,
|
||||
}
|
||||
impl<S, R> Client<S, R> where S: Encode + Decode, R: Encode + Decode {
|
||||
pub fn connect(addr: SocketAddr) -> anyhow::Result<Self> {
|
||||
|
|
Loading…
Reference in a new issue