pub trait UdfSchema: Send + Sync {
    // Required method
    fn get_schema(
        &self,
        input_schema: &Schema
    ) -> Result<Arc<Schema>, PolarsError>;
}Available on crate feature 
lazy only.pub trait UdfSchema: Send + Sync {
    // Required method
    fn get_schema(
        &self,
        input_schema: &Schema
    ) -> Result<Arc<Schema>, PolarsError>;
}lazy only.