Trait TextureOp

Source
pub trait TextureOp<F> {
    type Error: Debug;
}
Expand description

Implemented by texture operations.

Required Associated Types§

Source

type Error: Debug

The error when performing an operation.

Implementors§

Source§

impl<F, R> TextureOp<F> for Texture<R>
where R: Resources,