Skip to main content

IFunctionCallExpression

Trait IFunctionCallExpression 

Source
pub trait IFunctionCallExpression: IExpression {
    // Provided methods
    fn m_arguments(self) -> List_1<Expression> { ... }
    fn set_m_arguments(self, value: List_1<Expression>) { ... }
    fn m_function(self) -> Expression { ... }
    fn set_m_function(self, value: Expression) { ... }
    fn m_name(self) -> Il2CppString { ... }
    fn set_m_name(self, value: Il2CppString) { ... }
    fn m_debug_err(self) -> Il2CppString { ... }
    fn set_m_debug_err(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§