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§
Sourcefn get_location(self) -> IResourceLocation
fn get_location(self) -> IResourceLocation
get_Location() overload
Sourcefn set_location(self, value: impl Into<IResourceLocation>)
fn set_location(self, value: impl Into<IResourceLocation>)
set_Location(crate::unity_engine::resource_management::resource_locations::iresourcelocation::IResourceLocation) overload
Sourcefn ctor(self, location: impl Into<IResourceLocation>)
fn ctor(self, location: impl Into<IResourceLocation>)
.ctor(crate::unity_engine::resource_management::resource_locations::iresourcelocation::IResourceLocation) overload
Sourcefn ctor_3(self, message: impl Into<Il2CppString>)
fn ctor_3(self, message: impl Into<Il2CppString>)
.ctor(::unity::Il2CppString) overload
Sourcefn get_message(self) -> Il2CppString
fn get_message(self) -> Il2CppString
get_Message() overload
Sourcefn to_string(self) -> Il2CppString
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§
impl<__T: IUnknownResourceProviderException> IUnknownResourceProviderExceptionMethods for __T
Available on crate feature
unity_engine-resource_management-exceptions-unknownresourceproviderexception only.