Skip to main content

IAkChannelEmitterMethods

Trait IAkChannelEmitterMethods 

Source
pub trait IAkChannelEmitterMethods: IAkChannelEmitter {
    // 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_position(self, value: impl Into<AkTransform>) { ... }
    fn get_position(self) -> AkTransform { ... }
    fn set_u_input_channels(self, value: impl Into<u32>) { ... }
    fn get_u_input_channels(self) -> u32 { ... }
}

Provided Methods§

Source

fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)

.ctor(::unity::IntPtr, bool) overload

Source

fn set_c_ptr(self, c_ptr: impl Into<IntPtr>)

setCPtr(::unity::IntPtr) overload

Source

fn finalize(self)

Finalize() overload

Source

fn dispose(self)

Dispose() overload

Source

fn set_position(self, value: impl Into<AkTransform>)

set_position(crate::root::aktransform::AkTransform) overload

Source

fn get_position(self) -> AkTransform

get_position() overload

Source

fn set_u_input_channels(self, value: impl Into<u32>)

set_uInputChannels(u32) overload

Source

fn get_u_input_channels(self) -> u32

get_uInputChannels() 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§

Source§

impl<__T: IAkChannelEmitter> IAkChannelEmitterMethods for __T

Available on crate feature root-akchannelemitter only.