pub trait IAkMIDIEventCallbackInfoMethods: IAkMIDIEventCallbackInfo {
Show 19 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 get_by_chan(self) -> u8 { ... }
fn get_by_param1(self) -> u8 { ... }
fn get_by_param2(self) -> u8 { ... }
fn get_by_type(self) -> AkMIDIEventTypes { ... }
fn get_by_on_off_note(self) -> u8 { ... }
fn get_by_velocity(self) -> u8 { ... }
fn get_by_cc(self) -> AkMIDICcTypes { ... }
fn get_by_cc_value(self) -> u8 { ... }
fn get_by_value_lsb(self) -> u8 { ... }
fn get_by_value_msb(self) -> u8 { ... }
fn get_by_aftertouch_note(self) -> u8 { ... }
fn get_by_note_aftertouch_value(self) -> u8 { ... }
fn get_by_chan_aftertouch_value(self) -> u8 { ... }
fn get_by_program_num(self) -> u8 { ... }
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_by_chan(self) -> u8
fn get_by_chan(self) -> u8
get_byChan() overload
Sourcefn get_by_param1(self) -> u8
fn get_by_param1(self) -> u8
get_byParam1() overload
Sourcefn get_by_param2(self) -> u8
fn get_by_param2(self) -> u8
get_byParam2() overload
Sourcefn get_by_type(self) -> AkMIDIEventTypes
fn get_by_type(self) -> AkMIDIEventTypes
get_byType() overload
Sourcefn get_by_on_off_note(self) -> u8
fn get_by_on_off_note(self) -> u8
get_byOnOffNote() overload
Sourcefn get_by_velocity(self) -> u8
fn get_by_velocity(self) -> u8
get_byVelocity() overload
Sourcefn get_by_cc(self) -> AkMIDICcTypes
fn get_by_cc(self) -> AkMIDICcTypes
get_byCc() overload
Sourcefn get_by_cc_value(self) -> u8
fn get_by_cc_value(self) -> u8
get_byCcValue() overload
Sourcefn get_by_value_lsb(self) -> u8
fn get_by_value_lsb(self) -> u8
get_byValueLsb() overload
Sourcefn get_by_value_msb(self) -> u8
fn get_by_value_msb(self) -> u8
get_byValueMsb() overload
Sourcefn get_by_aftertouch_note(self) -> u8
fn get_by_aftertouch_note(self) -> u8
get_byAftertouchNote() overload
Sourcefn get_by_note_aftertouch_value(self) -> u8
fn get_by_note_aftertouch_value(self) -> u8
get_byNoteAftertouchValue() overload
Sourcefn get_by_chan_aftertouch_value(self) -> u8
fn get_by_chan_aftertouch_value(self) -> u8
get_byChanAftertouchValue() overload
Sourcefn get_by_program_num(self) -> u8
fn get_by_program_num(self) -> u8
get_byProgramNum() 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: IAkMIDIEventCallbackInfo> IAkMIDIEventCallbackInfoMethods for __T
Available on crate feature
root-akmidieventcallbackinfo only.