Trait nuts_bytes::PutBytesError
source · pub trait PutBytesError: Error {
// Required method
fn no_space() -> Self;
}
Expand description
Error type for the PutBytes
trait.
PutBytes
can generate one error: Not enough space is available in the
target. This kind of error can be created with
PutBytesError::no_space()
.
Required Methods§
Object Safety§
This trait is not object safe.