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]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for GenError
[src]

[src]

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

[src]

This method tests for !=.

Auto Trait Implementations

impl Send for GenError

impl Sync for GenError