pub trait IAkSegmentInfoMethods: IAkSegmentInfo {
Show 23 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_i_current_position(self, value: impl Into<i32>) { ... }
fn get_i_current_position(self) -> i32 { ... }
fn set_i_pre_entry_duration(self, value: impl Into<i32>) { ... }
fn get_i_pre_entry_duration(self) -> i32 { ... }
fn set_i_active_duration(self, value: impl Into<i32>) { ... }
fn get_i_active_duration(self) -> i32 { ... }
fn set_i_post_exit_duration(self, value: impl Into<i32>) { ... }
fn get_i_post_exit_duration(self) -> i32 { ... }
fn set_i_remaining_look_ahead_time(self, value: impl Into<i32>) { ... }
fn get_i_remaining_look_ahead_time(self) -> i32 { ... }
fn set_f_beat_duration(self, value: impl Into<f32>) { ... }
fn get_f_beat_duration(self) -> f32 { ... }
fn set_f_bar_duration(self, value: impl Into<f32>) { ... }
fn get_f_bar_duration(self) -> f32 { ... }
fn set_f_grid_duration(self, value: impl Into<f32>) { ... }
fn get_f_grid_duration(self) -> f32 { ... }
fn set_f_grid_offset(self, value: impl Into<f32>) { ... }
fn get_f_grid_offset(self) -> f32 { ... }
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_i_current_position(self, value: impl Into<i32>)
fn set_i_current_position(self, value: impl Into<i32>)
set_iCurrentPosition(i32) overload
Sourcefn get_i_current_position(self) -> i32
fn get_i_current_position(self) -> i32
get_iCurrentPosition() overload
Sourcefn set_i_pre_entry_duration(self, value: impl Into<i32>)
fn set_i_pre_entry_duration(self, value: impl Into<i32>)
set_iPreEntryDuration(i32) overload
Sourcefn get_i_pre_entry_duration(self) -> i32
fn get_i_pre_entry_duration(self) -> i32
get_iPreEntryDuration() overload
Sourcefn set_i_active_duration(self, value: impl Into<i32>)
fn set_i_active_duration(self, value: impl Into<i32>)
set_iActiveDuration(i32) overload
Sourcefn get_i_active_duration(self) -> i32
fn get_i_active_duration(self) -> i32
get_iActiveDuration() overload
Sourcefn set_i_post_exit_duration(self, value: impl Into<i32>)
fn set_i_post_exit_duration(self, value: impl Into<i32>)
set_iPostExitDuration(i32) overload
Sourcefn get_i_post_exit_duration(self) -> i32
fn get_i_post_exit_duration(self) -> i32
get_iPostExitDuration() overload
Sourcefn set_i_remaining_look_ahead_time(self, value: impl Into<i32>)
fn set_i_remaining_look_ahead_time(self, value: impl Into<i32>)
set_iRemainingLookAheadTime(i32) overload
Sourcefn get_i_remaining_look_ahead_time(self) -> i32
fn get_i_remaining_look_ahead_time(self) -> i32
get_iRemainingLookAheadTime() overload
Sourcefn set_f_beat_duration(self, value: impl Into<f32>)
fn set_f_beat_duration(self, value: impl Into<f32>)
set_fBeatDuration(f32) overload
Sourcefn get_f_beat_duration(self) -> f32
fn get_f_beat_duration(self) -> f32
get_fBeatDuration() overload
Sourcefn set_f_bar_duration(self, value: impl Into<f32>)
fn set_f_bar_duration(self, value: impl Into<f32>)
set_fBarDuration(f32) overload
Sourcefn get_f_bar_duration(self) -> f32
fn get_f_bar_duration(self) -> f32
get_fBarDuration() overload
Sourcefn set_f_grid_duration(self, value: impl Into<f32>)
fn set_f_grid_duration(self, value: impl Into<f32>)
set_fGridDuration(f32) overload
Sourcefn get_f_grid_duration(self) -> f32
fn get_f_grid_duration(self) -> f32
get_fGridDuration() overload
Sourcefn set_f_grid_offset(self, value: impl Into<f32>)
fn set_f_grid_offset(self, value: impl Into<f32>)
set_fGridOffset(f32) overload
Sourcefn get_f_grid_offset(self) -> f32
fn get_f_grid_offset(self) -> f32
get_fGridOffset() 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: IAkSegmentInfo> IAkSegmentInfoMethods for __T
Available on crate feature
root-aksegmentinfo only.