pub trait FieldAccessExt {
// Required method
fn get(self, class_name: &str, field_name: &str) -> Expression;
}Expand description
Extension trait for chaining field access
Allows for fluent syntax like: Expr::param(0).get("Class", "field")
Required Methods§
Sourcefn get(self, class_name: &str, field_name: &str) -> Expression
fn get(self, class_name: &str, field_name: &str) -> Expression
Access a field on this expression