#[repr(C)]
pub struct playdate_sound_sampleplayer {
Show 17 fields pub newPlayer: Option<unsafe extern "C" fn() -> *mut SamplePlayer>, pub freePlayer: Option<unsafe extern "C" fn(player: *mut SamplePlayer)>, pub setSample: Option<unsafe extern "C" fn(player: *mut SamplePlayer, sample: *mut AudioSample)>, pub play: Option<unsafe extern "C" fn(player: *mut SamplePlayer, repeat: c_int, rate: f32) -> c_int>, pub isPlaying: Option<unsafe extern "C" fn(player: *mut SamplePlayer) -> c_int>, pub stop: Option<unsafe extern "C" fn(player: *mut SamplePlayer)>, pub setVolume: Option<unsafe extern "C" fn(player: *mut SamplePlayer, left: f32, right: f32)>, pub getVolume: Option<unsafe extern "C" fn(player: *mut SamplePlayer, left: *mut f32, right: *mut f32)>, pub getLength: Option<unsafe extern "C" fn(player: *mut SamplePlayer) -> f32>, pub setOffset: Option<unsafe extern "C" fn(player: *mut SamplePlayer, offset: f32)>, pub setRate: Option<unsafe extern "C" fn(player: *mut SamplePlayer, rate: f32)>, pub setPlayRange: Option<unsafe extern "C" fn(player: *mut SamplePlayer, start: c_int, end: c_int)>, pub setFinishCallback: Option<unsafe extern "C" fn(player: *mut SamplePlayer, callback: sndCallbackProc)>, pub setLoopCallback: Option<unsafe extern "C" fn(player: *mut SamplePlayer, callback: sndCallbackProc)>, pub getOffset: Option<unsafe extern "C" fn(player: *mut SamplePlayer) -> f32>, pub getRate: Option<unsafe extern "C" fn(player: *mut SamplePlayer) -> f32>, pub setPaused: Option<unsafe extern "C" fn(player: *mut SamplePlayer, flag: c_int)>,
}

Fields

newPlayer: Option<unsafe extern "C" fn() -> *mut SamplePlayer>freePlayer: Option<unsafe extern "C" fn(player: *mut SamplePlayer)>setSample: Option<unsafe extern "C" fn(player: *mut SamplePlayer, sample: *mut AudioSample)>play: Option<unsafe extern "C" fn(player: *mut SamplePlayer, repeat: c_int, rate: f32) -> c_int>isPlaying: Option<unsafe extern "C" fn(player: *mut SamplePlayer) -> c_int>stop: Option<unsafe extern "C" fn(player: *mut SamplePlayer)>setVolume: Option<unsafe extern "C" fn(player: *mut SamplePlayer, left: f32, right: f32)>getVolume: Option<unsafe extern "C" fn(player: *mut SamplePlayer, left: *mut f32, right: *mut f32)>getLength: Option<unsafe extern "C" fn(player: *mut SamplePlayer) -> f32>setOffset: Option<unsafe extern "C" fn(player: *mut SamplePlayer, offset: f32)>setRate: Option<unsafe extern "C" fn(player: *mut SamplePlayer, rate: f32)>setPlayRange: Option<unsafe extern "C" fn(player: *mut SamplePlayer, start: c_int, end: c_int)>setFinishCallback: Option<unsafe extern "C" fn(player: *mut SamplePlayer, callback: sndCallbackProc)>setLoopCallback: Option<unsafe extern "C" fn(player: *mut SamplePlayer, callback: sndCallbackProc)>getOffset: Option<unsafe extern "C" fn(player: *mut SamplePlayer) -> f32>getRate: Option<unsafe extern "C" fn(player: *mut SamplePlayer) -> f32>setPaused: Option<unsafe extern "C" fn(player: *mut SamplePlayer, flag: c_int)>

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.