#[repr(C)]pub struct SegmentationMaskRaw {
pub width: usize,
pub height: usize,
pub bytes_per_row: usize,
pub bytes: *mut c_void,
}Expand description
Mirrors VNSegmentationMaskRaw in the Swift bridge. Layout-compatible.
Fields§
§width: usize§height: usize§bytes_per_row: usize§bytes: *mut c_voidAuto Trait Implementations§
impl Freeze for SegmentationMaskRaw
impl RefUnwindSafe for SegmentationMaskRaw
impl !Send for SegmentationMaskRaw
impl !Sync for SegmentationMaskRaw
impl Unpin for SegmentationMaskRaw
impl UnsafeUnpin for SegmentationMaskRaw
impl UnwindSafe for SegmentationMaskRaw
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