pub trait IFileDataMethods: IFileData {
// Provided methods
fn get_path(self) -> Il2CppString { ... }
fn get_data(self) -> Array<u8> { ... }
fn get_size(self) -> i32 { ... }
fn dump(self, index: impl Into<i32>) { ... }
fn dispose(self) { ... }
fn ctor(self) { ... }
fn finalize(self) { ... }
fn on_build(self) { ... }
fn on_dispose(self) { ... }
fn get_crc32(self) -> u32 { ... }
fn is_valid(self) -> bool { ... }
}Provided Methods§
Sourcefn get_path(self) -> Il2CppString
fn get_path(self) -> Il2CppString
GetPath() overload
Sourcefn on_dispose(self)
fn on_dispose(self)
OnDispose() 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: IFileData> IFileDataMethods for __T
Available on crate feature
app-filedata only.