Enum gltf::glb::Error
[−]
[src]
pub enum Error {
Io(Error),
Version(u32),
Magic([u8; 4]),
Length {
length: u32,
length_read: usize,
},
ChunkLength {
ty: ChunkType,
length: u32,
length_read: usize,
},
ChunkType(ChunkType),
UnknownChunkType([u8; 4]),
}Represents a Glb loader error.
Variants
Io(Error)Io error occured.
Version(u32)Unsupported version.
Magic([u8; 4])Magic says that file is not glTF.
LengthLength specified in GLB header exceeeds that of slice.
Fields of Length
length: u32 | length specified in GLB header. |
length_read: usize | Actual length of data read. |
ChunkLengthStream ended before we could read the chunk.
Fields of ChunkLength
ty: ChunkType | chunkType error happened at. |
length: u32 | chunkLength. |
length_read: usize | Actual length of data read. |
ChunkType(ChunkType)Chunk of this chunkType was not expected.
UnknownChunkType([u8; 4])Unknown chunk type.
Trait Implementations
impl Debug for Error[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Display for Error[src]
fn fmt(&self, f: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Error for Error[src]
fn description(&self) -> &str[src]
A short description of the error. Read more
fn cause(&self) -> Option<&Error>1.0.0[src]
The lower-level cause of this error, if any. Read more