Searched refs:GpuCommandDecodeError (Results 1 – 1 of 1) sorted by relevance
642 pub enum GpuCommandDecodeError { enum651 impl Display for GpuCommandDecodeError { implementation653 use self::GpuCommandDecodeError::*; in fmt()667 impl From<DescriptorError> for GpuCommandDecodeError { implementation668 fn from(e: DescriptorError) -> GpuCommandDecodeError { in from() argument669 GpuCommandDecodeError::Memory(e) in from()673 impl From<io::Error> for GpuCommandDecodeError { implementation674 fn from(e: io::Error) -> GpuCommandDecodeError { in from() argument675 GpuCommandDecodeError::IO(e) in from()714 pub fn decode(cmd: &mut Reader) -> Result<GpuCommand, GpuCommandDecodeError> { in decode() argument[all …]