pub trait IInvalidKeyExceptionMethods: IInvalidKeyException {
// Provided methods
fn get_key(self) -> Object { ... }
fn set_key(self, value: impl Into<Object>) { ... }
fn get_type(self) -> SystemType { ... }
fn set_type(self, value: impl Into<SystemType>) { ... }
fn ctor(self, key: impl Into<Object>) { ... }
fn ctor_2(self, key: impl Into<Object>, type: impl Into<SystemType>) { ... }
fn ctor_3(self) { ... }
fn ctor_4(self, message: impl Into<Il2CppString>) { ... }
fn get_message(self) -> Il2CppString { ... }
}Provided Methods§
Sourcefn ctor_2(self, key: impl Into<Object>, type: impl Into<SystemType>)
fn ctor_2(self, key: impl Into<Object>, type: impl Into<SystemType>)
.ctor(crate::system::object::Object, ::unity::SystemType) overload
Sourcefn ctor_4(self, message: impl Into<Il2CppString>)
fn ctor_4(self, message: impl Into<Il2CppString>)
.ctor(::unity::Il2CppString) overload
Sourcefn get_message(self) -> Il2CppString
fn get_message(self) -> Il2CppString
get_Message() 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: IInvalidKeyException> IInvalidKeyExceptionMethods for __T
Available on crate feature
unity_engine-addressable_assets-invalidkeyexception only.