librashader/librashader-runtime-d3d12/src/error.rs

4 lines
85 B
Rust
Raw Normal View History

2023-01-22 07:34:13 +11:00
use std::error::Error;
pub type Result<T> = std::result::Result<T, Box<dyn Error>>;