wgpu

Trait UncapturedErrorHandler

Source
pub trait UncapturedErrorHandler:
    Fn(Error)
    + Send
    + 'static { }
Expand description

Type for the callback of uncaptured error handler

Implementors§

Source§

impl<T> UncapturedErrorHandler for T
where T: Fn(Error) + Send + 'static,