pub struct ClassInfo {
    pub m_AssemblyNameIndex: i32,
    pub m_ClassName: String,
    pub m_IsUnityClass: bool,
    pub m_MethodIndex: i32,
    pub m_NamespaceIndex: i32,
    pub m_NumOfMethods: i32,
    pub m_NamespaceName: Option<String>,
}Expand description
ClassInfo is a sub class of the Unity engine since version 5.0.0f4.
Fields§
§m_AssemblyNameIndex: i32§m_ClassName: String§m_IsUnityClass: bool§m_MethodIndex: i32§m_NamespaceIndex: i32§m_NumOfMethods: i32§m_NamespaceName: Option<String>String: (2019.4.29f1 - 2019.4.40f1)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ClassInfo
 
impl<'de> Deserialize<'de> for ClassInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ClassInfo
impl RefUnwindSafe for ClassInfo
impl Send for ClassInfo
impl Sync for ClassInfo
impl Unpin for ClassInfo
impl UnwindSafe for ClassInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more