pub enum MapError {
FdAccess {
reason: String,
source: Error,
},
MappingFailed {
reason: String,
source: Error,
},
}Expand description
Error type to map a DmaBuf
Variants§
FdAccess
An Error occured while accessing the buffer file descriptor
MappingFailed
An Error occured while mapping the buffer file descriptor
Trait Implementations§
source§impl Error for MapError
impl Error for MapError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()