pub enum Il2CppError {
MissingClass(String),
MissingClassForType,
MissingMethod,
FailedInstantiation(String),
FailedArrayInstantiation,
FailedMethodInvocation,
FailedReflectionQuerying,
}
Variants§
MissingClass(String)
MissingClassForType
MissingMethod
FailedInstantiation(String)
FailedArrayInstantiation
FailedMethodInvocation
FailedReflectionQuerying
Trait Implementations§
source§impl Debug for Il2CppError
impl Debug for Il2CppError
source§impl Display for Il2CppError
impl Display for Il2CppError
source§impl Error for Il2CppError
impl Error for Il2CppError
1.30.0§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for Il2CppError
impl RefUnwindSafe for Il2CppError
impl Send for Il2CppError
impl Sync for Il2CppError
impl Unpin for Il2CppError
impl UnwindSafe for Il2CppError
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more