#[repr(C)]pub struct DRAWBOT_PathSuite1 {
pub MoveTo: Option<unsafe extern "C" fn(in_path_ref: DRAWBOT_PathRef, in_x: f32, in_y: f32) -> SPErr>,
pub LineTo: Option<unsafe extern "C" fn(in_path_ref: DRAWBOT_PathRef, in_x: f32, in_y: f32) -> SPErr>,
pub BezierTo: Option<unsafe extern "C" fn(in_path_ref: DRAWBOT_PathRef, in_pt1P: *const DRAWBOT_PointF32, in_pt2P: *const DRAWBOT_PointF32, in_pt3P: *const DRAWBOT_PointF32) -> SPErr>,
pub AddRect: Option<unsafe extern "C" fn(in_path_ref: DRAWBOT_PathRef, in_rectPR: *const DRAWBOT_RectF32) -> SPErr>,
pub AddArc: Option<unsafe extern "C" fn(in_path_ref: DRAWBOT_PathRef, in_centerP: *const DRAWBOT_PointF32, in_radius: f32, in_start_angle: f32, in_sweep: f32) -> SPErr>,
pub Close: Option<unsafe extern "C" fn(in_path_ref: DRAWBOT_PathRef) -> SPErr>,
}Fields§
§MoveTo: Option<unsafe extern "C" fn(in_path_ref: DRAWBOT_PathRef, in_x: f32, in_y: f32) -> SPErr>§LineTo: Option<unsafe extern "C" fn(in_path_ref: DRAWBOT_PathRef, in_x: f32, in_y: f32) -> SPErr>§BezierTo: Option<unsafe extern "C" fn(in_path_ref: DRAWBOT_PathRef, in_pt1P: *const DRAWBOT_PointF32, in_pt2P: *const DRAWBOT_PointF32, in_pt3P: *const DRAWBOT_PointF32) -> SPErr>§AddRect: Option<unsafe extern "C" fn(in_path_ref: DRAWBOT_PathRef, in_rectPR: *const DRAWBOT_RectF32) -> SPErr>§AddArc: Option<unsafe extern "C" fn(in_path_ref: DRAWBOT_PathRef, in_centerP: *const DRAWBOT_PointF32, in_radius: f32, in_start_angle: f32, in_sweep: f32) -> SPErr>§Close: Option<unsafe extern "C" fn(in_path_ref: DRAWBOT_PathRef) -> SPErr>Trait Implementations§
Source§impl Clone for DRAWBOT_PathSuite1
impl Clone for DRAWBOT_PathSuite1
Source§fn clone(&self) -> DRAWBOT_PathSuite1
fn clone(&self) -> DRAWBOT_PathSuite1
Returns a duplicate 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 moreSource§impl Debug for DRAWBOT_PathSuite1
impl Debug for DRAWBOT_PathSuite1
impl Copy for DRAWBOT_PathSuite1
Auto Trait Implementations§
impl Freeze for DRAWBOT_PathSuite1
impl RefUnwindSafe for DRAWBOT_PathSuite1
impl Send for DRAWBOT_PathSuite1
impl Sync for DRAWBOT_PathSuite1
impl Unpin for DRAWBOT_PathSuite1
impl UnwindSafe for DRAWBOT_PathSuite1
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