Trait machine_vision_formats::OwnedImage

source ·
pub trait OwnedImage<F>: AsImageData<F> + ImageData<F> + Into<Vec<u8>> { }
Expand description

An image which can be moved into Vec<u8>.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<S, F> OwnedImage<F> for S
where S: AsImageData<F> + ImageData<F>, Vec<u8>: From<S>,