Skip to main content

IFileNotFoundExceptionMethods

Trait IFileNotFoundExceptionMethods 

Source
pub trait IFileNotFoundExceptionMethods: IFileNotFoundException {
    // Provided methods
    fn ctor(self) { ... }
    fn ctor_2(self, message: impl Into<Il2CppString>) { ... }
    fn ctor_3(
        self,
        message: impl Into<Il2CppString>,
        file_name: 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§

Source

fn ctor(self)

.ctor() overload

Source

fn ctor_2(self, message: impl Into<Il2CppString>)

.ctor(::unity::Il2CppString) overload

Source

fn ctor_3( self, message: impl Into<Il2CppString>, file_name: impl Into<Il2CppString>, )

.ctor(::unity::Il2CppString, ::unity::Il2CppString) overload

Source

fn get_message(self) -> Il2CppString

get_Message() overload

Source

fn set_message_field(self)

SetMessageField() overload

Source

fn to_string(self) -> Il2CppString

ToString() overload

Source

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§

Source§

impl<__T: IFileNotFoundException> IFileNotFoundExceptionMethods for __T

Available on crate feature system-io-filenotfoundexception only.