allow unused methods in proto.rs

This commit is contained in:
MeexReay 2025-04-14 15:46:49 +03:00
parent 4aa1454fc5
commit fc339f46ce

View File

@ -1,3 +1,5 @@
#![allow(unused)]
use std::{error::Error, fmt::Debug, io::{Read, Write}, net::TcpStream};
pub trait RacStream: Read + Write + Unpin + Send + Sync + Debug {}