Enum lm4f120::flash::Error [] [src]

pub enum Error {
    HardwareError(u32),
    BadAlignment(u32),
    BufferTooLong(usize),
    BufferTooShort(usize),
}

Variants

A hardware error occured. The value is the contents of the FCRIS register.

Given address did not have the alignment specified here (as a u32).

Buffer given was too long, it should be the length given.

Buffer given was too short, it should be the length given.

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.