Enum circbuf::CircBufError [] [src]

pub enum CircBufError {
    BufEmpty,
    BufFull,
    Overflow,
}

Circular Buffer Error

The errors that are used with CircBuf. Namely, that the buffer is empty, full, or recieved a usize argument which could cause an overflow.

Variants

Trait Implementations

impl Debug for CircBufError
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for CircBufError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for CircBufError
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

Auto Trait Implementations

impl Send for CircBufError

impl Sync for CircBufError