Skip to main content

PolarsContext

Trait PolarsContext 

Source
pub trait PolarsContext<T> {
    // Required methods
    fn context(self, ctx: &'static str) -> PolarsResult<T>;
    fn with_context<F>(self, f: F) -> PolarsResult<T>
       where F: FnOnce() -> String;
}

Required Methods§

Source

fn context(self, ctx: &'static str) -> PolarsResult<T>

Source

fn with_context<F>(self, f: F) -> PolarsResult<T>
where F: FnOnce() -> String,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§