Trait arrow_udf_js::IntoField

source ·
pub trait IntoField: Sealed {
    // Required method
    fn into_field(self, default_name: &str) -> Field;
}
Expand description

Converts a type into a Field. Implementors are DataType and Field.

Required Methods§

source

fn into_field(self, default_name: &str) -> Field

Implementations on Foreign Types§

source§

impl IntoField for DataType

source§

fn into_field(self, default_name: &str) -> Field

source§

impl IntoField for Field

source§

fn into_field(self, _default_name: &str) -> Field

Implementors§