chore(example): Added hdr-gstreamer-wgpu example chore(license): Added MIT license to all crates
8 lines
208 B
Rust
8 lines
208 B
Rust
pub use error_stack::{Report, ResultExt};
|
|
|
|
#[derive(Debug, thiserror::Error)]
|
|
#[error("An error occurred")]
|
|
pub struct Error;
|
|
|
|
pub type Result<T, E = error_stack::Report<Error>> = core::result::Result<T, E>;
|