pub trait IFileLoadExceptionMethods: IFileLoadException {
// Provided methods
fn ctor(self) { ... }
fn ctor_2(self, message: impl Into<Il2CppString>) { ... }
fn get_message(self) -> Il2CppString { ... }
fn set_message_field(self) { ... }
fn to_string(self) -> Il2CppString { ... }
fn get_fusion_log(self) -> Il2CppString { ... }
}Provided Methods§
Sourcefn ctor_2(self, message: impl Into<Il2CppString>)
fn ctor_2(self, message: impl Into<Il2CppString>)
.ctor(::unity::Il2CppString) overload
Sourcefn get_message(self) -> Il2CppString
fn get_message(self) -> Il2CppString
get_Message() overload
Sourcefn set_message_field(self)
fn set_message_field(self)
SetMessageField() overload
Sourcefn to_string(self) -> Il2CppString
fn to_string(self) -> Il2CppString
ToString() overload
Sourcefn get_fusion_log(self) -> Il2CppString
fn get_fusion_log(self) -> Il2CppString
get_FusionLog() 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: IFileLoadException> IFileLoadExceptionMethods for __T
Available on crate feature
system-io-fileloadexception only.