PFAppSuite5

Struct PFAppSuite5 

Source
#[repr(C)]
pub struct PFAppSuite5 { pub PF_AppGetBgColor: Option<unsafe extern "C" fn(bg_colorP: *mut PF_App_Color) -> PF_Err>, pub PF_AppGetColor: Option<unsafe extern "C" fn(color_type: PF_App_ColorType, app_colorP: *mut PF_App_Color) -> PF_Err>, pub PF_AppGetLanguage: Option<unsafe extern "C" fn(lang_tagZ: *mut A_char) -> PF_Err>, pub PF_GetPersonalInfo: Option<unsafe extern "C" fn(ptiP: *mut PF_AppPersonalTextInfo) -> PF_Err>, pub PF_GetFontStyleSheet: Option<unsafe extern "C" fn(sheet: PF_FontStyleSheet, font_nameP0: *mut PF_FontName, font_numPS0: *mut A_short, sizePS0: *mut A_short, stylePS0: *mut A_short) -> PF_Err>, pub PF_SetCursor: Option<unsafe extern "C" fn(cursor: PF_CursorType) -> PF_Err>, pub PF_IsRenderEngine: Option<unsafe extern "C" fn(render_enginePB: *mut PF_Boolean) -> PF_Err>, pub PF_AppColorPickerDialog: Option<unsafe extern "C" fn(dialog_titleZ0: *const A_char, sample_colorP: *const PF_PixelFloat, use_ws_to_monitor_xformB: PF_Boolean, new_colorP: *mut PF_PixelFloat) -> PF_Err>, pub PF_GetMouse: Option<unsafe extern "C" fn(pointP: *mut PF_Point) -> PF_Err>, pub PF_InvalidateRect: Option<unsafe extern "C" fn(contextH: PF_ContextH, rectP0: *const PF_Rect) -> PF_Err>, pub PF_ConvertLocalToGlobal: Option<unsafe extern "C" fn(localP: *const PF_Point, globalP: *mut PF_Point) -> PF_Err>, pub PF_GetColorAtGlobalPoint: Option<unsafe extern "C" fn(globalP: *const PF_Point, eyeSize: A_short, mode: PF_EyeDropperSampleMode, outColorP: *mut PF_PixelFloat) -> PF_Err>, }

Fields§

§PF_AppGetBgColor: Option<unsafe extern "C" fn(bg_colorP: *mut PF_App_Color) -> PF_Err>§PF_AppGetColor: Option<unsafe extern "C" fn(color_type: PF_App_ColorType, app_colorP: *mut PF_App_Color) -> PF_Err>§PF_AppGetLanguage: Option<unsafe extern "C" fn(lang_tagZ: *mut A_char) -> PF_Err>§PF_GetPersonalInfo: Option<unsafe extern "C" fn(ptiP: *mut PF_AppPersonalTextInfo) -> PF_Err>§PF_GetFontStyleSheet: Option<unsafe extern "C" fn(sheet: PF_FontStyleSheet, font_nameP0: *mut PF_FontName, font_numPS0: *mut A_short, sizePS0: *mut A_short, stylePS0: *mut A_short) -> PF_Err>§PF_SetCursor: Option<unsafe extern "C" fn(cursor: PF_CursorType) -> PF_Err>§PF_IsRenderEngine: Option<unsafe extern "C" fn(render_enginePB: *mut PF_Boolean) -> PF_Err>§PF_AppColorPickerDialog: Option<unsafe extern "C" fn(dialog_titleZ0: *const A_char, sample_colorP: *const PF_PixelFloat, use_ws_to_monitor_xformB: PF_Boolean, new_colorP: *mut PF_PixelFloat) -> PF_Err>§PF_GetMouse: Option<unsafe extern "C" fn(pointP: *mut PF_Point) -> PF_Err>§PF_InvalidateRect: Option<unsafe extern "C" fn(contextH: PF_ContextH, rectP0: *const PF_Rect) -> PF_Err>§PF_ConvertLocalToGlobal: Option<unsafe extern "C" fn(localP: *const PF_Point, globalP: *mut PF_Point) -> PF_Err>§PF_GetColorAtGlobalPoint: Option<unsafe extern "C" fn(globalP: *const PF_Point, eyeSize: A_short, mode: PF_EyeDropperSampleMode, outColorP: *mut PF_PixelFloat) -> PF_Err>

Trait Implementations§

Source§

impl Clone for PFAppSuite5

Source§

fn clone(&self) -> PFAppSuite5

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PFAppSuite5

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for PFAppSuite5

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.