/// Result for [crate::device_tree::DeviceTree] parsing
pubtypeResult<T>=core::result::Result<T, DeviceTreeError>;/// Errors for [crate::device_tree::DeviceTree] parsing
#[derive(Debug, Copy, Clone)]pubenumDeviceTreeError{/// Wrong magic number
InvalidMagicNumber,/// Data are too short for parsing
NotEnoughLength,/// Wrong token number
InvalidToken,/// Read bytes failed
ParsingFailed,/// Memory cannot be accessed
MemoryAccessFailed,/// Missing definition of the address or size length
MissingCellParameter,}