Struct machine_vision_formats::ImageBufferRef
source · pub struct ImageBufferRef<'a, F> {
pub pixel_format: PhantomData<F>,
pub data: &'a [u8],
}
Expand description
A concrete type with view of image data with pixel format F
.
This is a zero-size wrapper around a slice of bytes parameterized by the
type F
. It should cause no additional overhead above passing the raw byte
slice but maintains a compile-time guarantee of the image format.
Fields§
§pixel_format: PhantomData<F>
The pixel format
data: &'a [u8]
The raw bytes of the image buffer.
Implementations§
source§impl<'a, F> ImageBufferRef<'a, F>
impl<'a, F> ImageBufferRef<'a, F>
Trait Implementations§
source§impl<'a, F: Clone> Clone for ImageBufferRef<'a, F>
impl<'a, F: Clone> Clone for ImageBufferRef<'a, F>
source§fn clone(&self) -> ImageBufferRef<'a, F>
fn clone(&self) -> ImageBufferRef<'a, F>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a, F> Freeze for ImageBufferRef<'a, F>
impl<'a, F> RefUnwindSafe for ImageBufferRef<'a, F>where
F: RefUnwindSafe,
impl<'a, F> Send for ImageBufferRef<'a, F>where
F: Send,
impl<'a, F> Sync for ImageBufferRef<'a, F>where
F: Sync,
impl<'a, F> Unpin for ImageBufferRef<'a, F>where
F: Unpin,
impl<'a, F> UnwindSafe for ImageBufferRef<'a, F>where
F: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more