pub trait IAkMusicSettingsMethods: IAkMusicSettings {
// 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 set_f_streaming_look_ahead_ratio(self, value: impl Into<f32>) { ... }
fn get_f_streaming_look_ahead_ratio(self) -> f32 { ... }
}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 set_f_streaming_look_ahead_ratio(self, value: impl Into<f32>)
fn set_f_streaming_look_ahead_ratio(self, value: impl Into<f32>)
set_fStreamingLookAheadRatio(f32) overload
Sourcefn get_f_streaming_look_ahead_ratio(self) -> f32
fn get_f_streaming_look_ahead_ratio(self) -> f32
get_fStreamingLookAheadRatio() 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: IAkMusicSettings> IAkMusicSettingsMethods for __T
Available on crate feature
root-akmusicsettings only.