Skip to main content

IDynamicExpression

Trait IDynamicExpression 

Source
pub trait IDynamicExpression: IObject {
    // Provided methods
    fn m_exp(self) -> DynamicExprExpression { ... }
    fn set_m_exp(self, value: DynamicExprExpression) { ... }
    fn m_constant(self) -> DynValue { ... }
    fn set_m_constant(self, value: DynValue) { ... }
    fn expression_code(self) -> Il2CppString { ... }
    fn set_expression_code(self, value: Il2CppString) { ... }
}

Provided Methods§

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§