Enum device_tree::DeviceTreeError
[−]
[src]
pub enum DeviceTreeError { InvalidMagicNumber, SizeMismatch, SliceReadError(SliceReadError), ParseError(usize), Utf8Error, VersionNotSupported, }
An error describe parsing problems when creating device trees.
Variants
InvalidMagicNumber | The magic number | |
SizeMismatch | An offset or size found inside the device tree is outside of what was
supplied to | |
SliceReadError | Failed to read data from slice. | |
ParseError | The data format was not as expected at the given position | |
Utf8Error | While trying to convert a string that was supposed to be ASCII, invalid utf8 sequences were encounted | |
VersionNotSupported | The device tree version is not supported by this library. |