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§
fn context(self, ctx: &'static str) -> PolarsResult<T>
fn with_context<F>(self, f: F) -> PolarsResult<T>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".