pub trait ImageTextureConvert<T> {
    // Required method
    fn convert_out(from: &T, to: &mut T);
}

Required Methods§

source

fn convert_out(from: &T, to: &mut T)

Object Safety§

This trait is not object safe.

Implementors§