Skip to main content

IAkRampMethods

Trait IAkRampMethods 

Source
pub trait IAkRampMethods: IAkRamp {
    // 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 ctor_2(self) { ... }
    fn ctor_3(self, in_f_prev: impl Into<f32>, in_f_next: impl Into<f32>) { ... }
    fn set_f_prev(self, value: impl Into<f32>) { ... }
    fn get_f_prev(self) -> f32 { ... }
    fn set_f_next(self, value: impl Into<f32>) { ... }
    fn get_f_next(self) -> f32 { ... }
}

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 ctor_2(self)

.ctor() overload

Source

fn ctor_3(self, in_f_prev: impl Into<f32>, in_f_next: impl Into<f32>)

.ctor(f32, f32) overload

Source

fn set_f_prev(self, value: impl Into<f32>)

set_fPrev(f32) overload

Source

fn get_f_prev(self) -> f32

get_fPrev() overload

Source

fn set_f_next(self, value: impl Into<f32>)

set_fNext(f32) overload

Source

fn get_f_next(self) -> f32

get_fNext() 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: IAkRamp> IAkRampMethods for __T

Available on crate feature root-akramp only.