Skip to main content

IFileHandle_1Methods

Trait IFileHandle_1Methods 

Source
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§

Source

fn load(self, path: Il2CppString) -> bool
where Self: Sized,

Source

fn load_async(self, path: Il2CppString)
where Self: Sized,

Source

fn unload(self)
where Self: Sized,

Source

fn dump(self)
where Self: Sized,

Source

fn is_loading(self) -> bool
where Self: Sized,

Source

fn is_valid(self) -> bool
where Self: Sized,

Source

fn get_data(self) -> Array<u8>
where Self: Sized,

Source

fn get_size(self) -> i32
where Self: Sized,

Source

fn get_path(self) -> Il2CppString
where Self: Sized,

Source

fn dispose(self)
where Self: Sized,

Source

fn ctor(self)
where Self: Sized,

Source

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.

Implementors§