pub trait IVibrationFileMethods: IVibrationFile {
// Provided methods
fn get_context(self) -> VibrationFileParserContext { ... }
fn get_length(self) -> i32 { ... }
fn ctor(self) { ... }
fn load(self, file_path: impl Into<Il2CppString>) -> bool { ... }
}Provided Methods§
Sourcefn get_context(self) -> VibrationFileParserContext
fn get_context(self) -> VibrationFileParserContext
get_Context() overload
Sourcefn get_length(self) -> i32
fn get_length(self) -> i32
get_Length() overload
Sourcefn load(self, file_path: impl Into<Il2CppString>) -> bool
fn load(self, file_path: impl Into<Il2CppString>) -> bool
Load(::unity::Il2CppString) 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: IVibrationFile> IVibrationFileMethods for __T
Available on crate feature
app-vibrationfile only.