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§

source

fn no_space() -> Self

Creates a no space error.

This error should be raised if the target has not anough space available.

Object Safety§

This trait is not object safe.

Implementors§