pub trait IVibrationManager: IObject {
// Provided methods
fn m_vibration_file_dictionary(
self,
) -> Dictionary_2<Il2CppString, VibrationFile> { ... }
fn set_m_vibration_file_dictionary(
self,
value: Dictionary_2<Il2CppString, VibrationFile>,
) { ... }
fn m_handle(self) -> VibrationManager_VibHandle { ... }
fn set_m_handle(self, value: VibrationManager_VibHandle) { ... }
}Provided Methods§
fn m_vibration_file_dictionary( self, ) -> Dictionary_2<Il2CppString, VibrationFile>
fn set_m_vibration_file_dictionary( self, value: Dictionary_2<Il2CppString, VibrationFile>, )
fn m_handle(self) -> VibrationManager_VibHandle
fn set_m_handle(self, value: VibrationManager_VibHandle)
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.