/// Signal to the calling code that parsing cannot continue until this many more bytes have
/// been read.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]pubstructWants(pub(crate)usize);implWants{/// Get the number of bytes required before parsing can make progress.
#[inline]#[must_use]pubfnget(&self)->usize{self.0}}