//! Error that is when trying to read the start of a new payload when no new
//! payload is present in a packet.
usestd::fmt;implstd::error::Error forPayloadIsNotStart{}implfmt::Display forPayloadIsNotStart{fnfmt(&self, f:&mutfmt::Formatter<'_>)->fmt::Result{write!(f,"payload does not contain the start of a new partial payload")}}