Skip to main content

IUnknownResourceProviderExceptionMethods

Trait IUnknownResourceProviderExceptionMethods 

Source
pub trait IUnknownResourceProviderExceptionMethods: IUnknownResourceProviderException {
    // Provided methods
    fn get_location(self) -> IResourceLocation { ... }
    fn set_location(self, value: impl Into<IResourceLocation>) { ... }
    fn ctor(self, location: impl Into<IResourceLocation>) { ... }
    fn ctor_2(self) { ... }
    fn ctor_3(self, message: impl Into<Il2CppString>) { ... }
    fn get_message(self) -> Il2CppString { ... }
    fn to_string(self) -> Il2CppString { ... }
}

Provided Methods§

Source

fn get_location(self) -> IResourceLocation

get_Location() overload

Source

fn set_location(self, value: impl Into<IResourceLocation>)

set_Location(crate::unity_engine::resource_management::resource_locations::iresourcelocation::IResourceLocation) overload

Source

fn ctor(self, location: impl Into<IResourceLocation>)

.ctor(crate::unity_engine::resource_management::resource_locations::iresourcelocation::IResourceLocation) overload

Source

fn ctor_2(self)

.ctor() overload

Source

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

.ctor(::unity::Il2CppString) overload

Source

fn get_message(self) -> Il2CppString

get_Message() overload

Source

fn to_string(self) -> Il2CppString

ToString() 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: IUnknownResourceProviderException> IUnknownResourceProviderExceptionMethods for __T

Available on crate feature unity_engine-resource_management-exceptions-unknownresourceproviderexception only.