pub trait ColorAdjustmentProxyInterface: Send + Sync {
type SetDiscreteColorAdjustmentResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn set_discrete_color_adjustment(
&self,
color_adjustment: &ColorAdjustmentTable,
) -> Self::SetDiscreteColorAdjustmentResponseFut;
}Required Associated Types§
Required Methods§
fn set_discrete_color_adjustment( &self, color_adjustment: &ColorAdjustmentTable, ) -> Self::SetDiscreteColorAdjustmentResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".