pub trait IFileHandle_1Methods<T0: ClassIdentity>: ClassIdentity {
// Provided methods
fn load(self, path: Il2CppString) -> bool
where Self: Sized { ... }
fn load_async(self, path: Il2CppString)
where Self: Sized { ... }
fn unload(self)
where Self: Sized { ... }
fn dump(self)
where Self: Sized { ... }
fn is_loading(self) -> bool
where Self: Sized { ... }
fn is_valid(self) -> bool
where Self: Sized { ... }
fn get_data(self) -> Array<u8>
where Self: Sized { ... }
fn get_size(self) -> i32
where Self: Sized { ... }
fn get_path(self) -> Il2CppString
where Self: Sized { ... }
fn dispose(self)
where Self: Sized { ... }
fn ctor(self)
where Self: Sized { ... }
fn finalize(self)
where Self: Sized { ... }
}Provided Methods§
fn load(self, path: Il2CppString) -> boolwhere
Self: Sized,
fn load_async(self, path: Il2CppString)where
Self: Sized,
fn unload(self)where
Self: Sized,
fn dump(self)where
Self: Sized,
fn is_loading(self) -> boolwhere
Self: Sized,
fn is_valid(self) -> boolwhere
Self: Sized,
fn get_data(self) -> Array<u8>where
Self: Sized,
fn get_size(self) -> i32where
Self: Sized,
fn get_path(self) -> Il2CppStringwhere
Self: Sized,
fn dispose(self)where
Self: Sized,
fn ctor(self)where
Self: Sized,
fn finalize(self)where
Self: Sized,
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.