PF_InData

Struct PF_InData 

Source
#[repr(C)]
pub struct PF_InData {
Show 38 fields pub inter: PF_InteractCallbacks, pub utils: *mut _PF_UtilCallbacks, pub effect_ref: PF_ProgPtr, pub quality: PF_Quality, pub version: PF_SpecVersion, pub serial_num: A_long, pub appl_id: A_long, pub num_params: A_long, pub reserved: A_long, pub what_cpu: A_long, pub what_fpu: A_long, pub current_time: A_long, pub time_step: A_long, pub total_time: A_long, pub local_time_step: A_long, pub time_scale: A_u_long, pub field: PF_Field, pub shutter_angle: PF_Fixed, pub width: A_long, pub height: A_long, pub extent_hint: PF_Rect, pub output_origin_x: A_long, pub output_origin_y: A_long, pub downsample_x: PF_RationalScale, pub downsample_y: PF_RationalScale, pub pixel_aspect_ratio: PF_RationalScale, pub in_flags: PF_InFlags, pub global_data: PF_Handle, pub sequence_data: PF_Handle, pub frame_data: PF_Handle, pub start_sampL: A_long, pub dur_sampL: A_long, pub total_sampL: A_long, pub src_snd: PF_SoundWorld, pub pica_basicP: *mut SPBasicSuite, pub pre_effect_source_origin_x: A_long, pub pre_effect_source_origin_y: A_long, pub shutter_phase: PF_Fixed,
}

Fields§

§inter: PF_InteractCallbacks§utils: *mut _PF_UtilCallbacks§effect_ref: PF_ProgPtr§quality: PF_Quality§version: PF_SpecVersion§serial_num: A_long§appl_id: A_long§num_params: A_long§reserved: A_long§what_cpu: A_long§what_fpu: A_long§current_time: A_long§time_step: A_long§total_time: A_long§local_time_step: A_long§time_scale: A_u_long§field: PF_Field§shutter_angle: PF_Fixed§width: A_long§height: A_long§extent_hint: PF_Rect§output_origin_x: A_long§output_origin_y: A_long§downsample_x: PF_RationalScale§downsample_y: PF_RationalScale§pixel_aspect_ratio: PF_RationalScale§in_flags: PF_InFlags§global_data: PF_Handle§sequence_data: PF_Handle§frame_data: PF_Handle§start_sampL: A_long§dur_sampL: A_long§total_sampL: A_long§src_snd: PF_SoundWorld§pica_basicP: *mut SPBasicSuite§pre_effect_source_origin_x: A_long§pre_effect_source_origin_y: A_long§shutter_phase: PF_Fixed

Trait Implementations§

Source§

impl Clone for PF_InData

Source§

fn clone(&self) -> PF_InData

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 PF_InData

Source§

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

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

impl Copy for PF_InData

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.