pub trait SizedRequest { // Required methods fn size(&self) -> u32; fn is_publish(&self) -> bool; fn is_chunk(&self) -> bool; }
Trait for types that could be sized