pub trait Stream: Drop { // Required methods fn tell(&self) -> usize; fn size(&self) -> usize; }
get the current position
get the size of the stream