Enum cookie_factory::GenError [] [src]

pub enum GenError {
    BufferTooSmall(usize),
    InvalidOffset,
    CustomError(u32),
    NotYetImplemented,
}

Base type for generator errors

Variants

Input buffer is too small. Argument is the maximum index that is required

Operation asked for accessing an invalid index

Allocated for custom errors

Generator or function not yet implemented

Trait Implementations

impl Debug for GenError
[src]

Formats the value using the given formatter.

impl PartialEq for GenError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.