pub struct SyncPoint { /* private fields */ }
Expand description
Named marker for a given point in time.
Implementations§
Source§impl SyncPoint
impl SyncPoint
Sourcepub unsafe fn from_ffi(value: *mut FMOD_SYNCPOINT) -> Self
pub unsafe fn from_ffi(value: *mut FMOD_SYNCPOINT) -> Self
§Safety
value
must be a valid pointer either aquired from Self::as_ptr
or FMOD.
§Panics
Panics if value
is null.
Sourcepub fn as_ptr(self) -> *mut FMOD_SYNCPOINT
pub fn as_ptr(self) -> *mut FMOD_SYNCPOINT
Converts self
into its raw representation.
Trait Implementations§
impl Copy for SyncPoint
impl Eq for SyncPoint
impl Send for SyncPoint
Available on non-crate feature
thread-unsafe
only.impl StructuralPartialEq for SyncPoint
impl Sync for SyncPoint
Available on non-crate feature
thread-unsafe
only.Auto Trait Implementations§
impl Freeze for SyncPoint
impl RefUnwindSafe for SyncPoint
impl Unpin for SyncPoint
impl UnwindSafe for SyncPoint
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