pub trait DeviceSubmission {
type Output;
type Error;
// Required method
fn wait(self) -> Result<Self::Output, Self::Error>;
}Expand description
Submitted device decode operation that can be waited on for completion.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".