col

Function col 

Source
pub fn col(field: impl Into<FieldName>) -> Expression
Expand description

Creates an expression that accesses a field from the root array.

Equivalent to get_item(field, root()) - extracts a named field from the input array.

let expr = col("name");