Skip to main content

IInvalidKeyExceptionMethods

Trait IInvalidKeyExceptionMethods 

Source
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§

Source

fn get_key(self) -> Object

get_Key() overload

Source

fn set_key(self, value: impl Into<Object>)

set_Key(crate::system::object::Object) overload

Source

fn get_type(self) -> SystemType

get_Type() overload

Source

fn set_type(self, value: impl Into<SystemType>)

set_Type(::unity::SystemType) overload

Source

fn ctor(self, key: impl Into<Object>)

.ctor(crate::system::object::Object) overload

Source

fn ctor_2(self, key: impl Into<Object>, type: impl Into<SystemType>)

.ctor(crate::system::object::Object, ::unity::SystemType) overload

Source

fn ctor_3(self)

.ctor() overload

Source

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

.ctor(::unity::Il2CppString) overload

Source

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§

Source§

impl<__T: IInvalidKeyException> IInvalidKeyExceptionMethods for __T

Available on crate feature unity_engine-addressable_assets-invalidkeyexception only.