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

4 lines
85 B
Rust
Raw Normal View History

2022-12-06 17:01:21 +11:00
use std::error::Error;
2022-12-22 13:39:31 +11:00
pub type Result<T> = std::result::Result<T, Box<dyn Error>>;