#[repr(C)]pub struct AsyncSegResultRaw {
pub width: usize,
pub height: usize,
pub bytes_per_row: usize,
pub bytes: *mut u8,
}Expand description
Result container for async segmentation operations. Freed by vn_async_seg_result_free.
Fields§
§width: usize§height: usize§bytes_per_row: usize§bytes: *mut u8Auto Trait Implementations§
impl Freeze for AsyncSegResultRaw
impl RefUnwindSafe for AsyncSegResultRaw
impl !Send for AsyncSegResultRaw
impl !Sync for AsyncSegResultRaw
impl Unpin for AsyncSegResultRaw
impl UnsafeUnpin for AsyncSegResultRaw
impl UnwindSafe for AsyncSegResultRaw
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