#[repr(C)]pub struct ContourRaw {
pub point_xs: *mut f64,
pub point_ys: *mut f64,
pub point_count: usize,
pub child_count: isize,
pub aspect_ratio: f32,
}Expand description
Mirrors VNContourRaw in the Swift bridge. Layout-compatible.
Fields§
§point_xs: *mut f64§point_ys: *mut f64§point_count: usize§child_count: isize§aspect_ratio: f32Auto Trait Implementations§
impl Freeze for ContourRaw
impl RefUnwindSafe for ContourRaw
impl !Send for ContourRaw
impl !Sync for ContourRaw
impl Unpin for ContourRaw
impl UnsafeUnpin for ContourRaw
impl UnwindSafe for ContourRaw
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