pub trait ObjectExt: for<'a> Type<Held<'a> = Option<&'a mut Self>> + DerefMut<Target = Il2CppObject> + Sized {
    fn new<A, const N: usize>(args: A) -> &'static mut Self
    where
        A: Arguments<N>
, { ... } }
Expand description

Helper trait for reference types which can be dereferenced to an object

Provided Methods

Creates a new object using the constructor taking the given arguments

Implementors