pub trait IVibrationFile: IObject {
// Provided methods
fn m_file(self) -> RawFileHandle { ... }
fn set_m_file(self, value: RawFileHandle) { ... }
fn m_info(self) -> VibrationFileInfo { ... }
fn set_m_info(self, value: VibrationFileInfo) { ... }
fn m_context(self) -> VibrationFileParserContext { ... }
fn set_m_context(self, value: VibrationFileParserContext) { ... }
}Provided Methods§
fn m_file(self) -> RawFileHandle
fn set_m_file(self, value: RawFileHandle)
fn m_info(self) -> VibrationFileInfo
fn set_m_info(self, value: VibrationFileInfo)
fn m_context(self) -> VibrationFileParserContext
fn set_m_context(self, value: VibrationFileParserContext)
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.