pub trait Truncate { // Required method fn truncate(&mut self, len: usize); }
An octet sequence that can be shortened.
Truncate the sequence to len octets.
len
If len is larger than the length of the sequence, nothing happens.