pub trait IAkDurationCallbackInfoMethods: IAkDurationCallbackInfo {
// Provided methods
fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>) { ... }
fn set_c_ptr(self, c_ptr: impl Into<IntPtr>) { ... }
fn finalize(self) { ... }
fn dispose(self) { ... }
fn get_f_duration(self) -> f32 { ... }
fn get_f_estimated_duration(self) -> f32 { ... }
fn get_audio_node_id(self) -> u32 { ... }
fn get_media_id(self) -> u32 { ... }
fn get_b_streaming(self) -> bool { ... }
fn ctor_2(self) { ... }
}Provided Methods§
Sourcefn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)
fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)
.ctor(::unity::IntPtr, bool) overload
Sourcefn get_f_duration(self) -> f32
fn get_f_duration(self) -> f32
get_fDuration() overload
Sourcefn get_f_estimated_duration(self) -> f32
fn get_f_estimated_duration(self) -> f32
get_fEstimatedDuration() overload
Sourcefn get_audio_node_id(self) -> u32
fn get_audio_node_id(self) -> u32
get_audioNodeID() overload
Sourcefn get_media_id(self) -> u32
fn get_media_id(self) -> u32
get_mediaID() overload
Sourcefn get_b_streaming(self) -> bool
fn get_b_streaming(self) -> bool
get_bStreaming() overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IAkDurationCallbackInfo> IAkDurationCallbackInfoMethods for __T
Available on crate feature
root-akdurationcallbackinfo only.