pub trait ReadInfo {
// Required methods
fn is_seeder(&self) -> bool;
fn get_event(&self) -> AnnounceEvent;
fn get_id(&self) -> PeerId;
fn get_updated(&self) -> DurationSinceUnixEpoch;
fn get_address(&self) -> SocketAddr;
}pub trait ReadInfo {
// Required methods
fn is_seeder(&self) -> bool;
fn get_event(&self) -> AnnounceEvent;
fn get_id(&self) -> PeerId;
fn get_updated(&self) -> DurationSinceUnixEpoch;
fn get_address(&self) -> SocketAddr;
}