#[repr(C, packed(1))]pub struct ARAPlaybackRendererInterface {
pub structSize: ARASize,
pub addPlaybackRegion: Option<unsafe extern "C" fn(playbackRendererRef: ARAPlaybackRendererRef, playbackRegionRef: ARAPlaybackRegionRef)>,
pub removePlaybackRegion: Option<unsafe extern "C" fn(playbackRendererRef: ARAPlaybackRendererRef, playbackRegionRef: ARAPlaybackRegionRef)>,
}Expand description
! Plug-in interface: playback renderer. ! The function pointers in this struct must remain valid until the companion API plug-in instance ! (and accordingly its plug-in extension) is destroyed by the host.
Fields§
§structSize: ARASize§addPlaybackRegion: Option<unsafe extern "C" fn(playbackRendererRef: ARAPlaybackRendererRef, playbackRegionRef: ARAPlaybackRegionRef)>§removePlaybackRegion: Option<unsafe extern "C" fn(playbackRendererRef: ARAPlaybackRendererRef, playbackRegionRef: ARAPlaybackRegionRef)>Trait Implementations§
Source§impl Clone for ARAPlaybackRendererInterface
impl Clone for ARAPlaybackRendererInterface
Source§fn clone(&self) -> ARAPlaybackRendererInterface
fn clone(&self) -> ARAPlaybackRendererInterface
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ARAPlaybackRendererInterface
impl Debug for ARAPlaybackRendererInterface
impl Copy for ARAPlaybackRendererInterface
Auto Trait Implementations§
impl Freeze for ARAPlaybackRendererInterface
impl RefUnwindSafe for ARAPlaybackRendererInterface
impl Send for ARAPlaybackRendererInterface
impl Sync for ARAPlaybackRendererInterface
impl Unpin for ARAPlaybackRendererInterface
impl UnsafeUnpin for ARAPlaybackRendererInterface
impl UnwindSafe for ARAPlaybackRendererInterface
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