blp 0.1.37

Blizzard BLP image format reader/writer (Warcraft/World of Warcraft textures)
Documentation
1
2
3
4
5
6
7
8
9
use crate::error::error::BlpError;
use std::error::Error;
use std::sync::Arc;

#[derive(Debug, Clone)]
pub enum Cause {
    Blp(BlpError),
    Std(Arc<dyn Error + Send + Sync>),
}