pub trait IAkSourceSettingsMethods: IAkSourceSettings {
Show 13 methods
// 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_source_id(self, value: impl Into<u32>) { ... }
fn get_source_id(self) -> u32 { ... }
fn set_p_media_memory(self, value: impl Into<IntPtr>) { ... }
fn get_p_media_memory(self) -> IntPtr { ... }
fn set_u_media_size(self, value: impl Into<u32>) { ... }
fn get_u_media_size(self) -> u32 { ... }
fn clear(self) { ... }
fn clone(self, other: impl Into<AkSourceSettings>) { ... }
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 set_source_id(self, value: impl Into<u32>)
fn set_source_id(self, value: impl Into<u32>)
set_sourceID(u32) overload
Sourcefn get_source_id(self) -> u32
fn get_source_id(self) -> u32
get_sourceID() overload
Sourcefn set_p_media_memory(self, value: impl Into<IntPtr>)
fn set_p_media_memory(self, value: impl Into<IntPtr>)
set_pMediaMemory(::unity::IntPtr) overload
Sourcefn get_p_media_memory(self) -> IntPtr
fn get_p_media_memory(self) -> IntPtr
get_pMediaMemory() overload
Sourcefn set_u_media_size(self, value: impl Into<u32>)
fn set_u_media_size(self, value: impl Into<u32>)
set_uMediaSize(u32) overload
Sourcefn get_u_media_size(self) -> u32
fn get_u_media_size(self) -> u32
get_uMediaSize() overload
Sourcefn clone(self, other: impl Into<AkSourceSettings>)
fn clone(self, other: impl Into<AkSourceSettings>)
Clone(crate::root::aksourcesettings::AkSourceSettings) 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: IAkSourceSettings> IAkSourceSettingsMethods for __T
Available on crate feature
root-aksourcesettings only.