pub trait SchemaExtPl {
// Required methods
fn matches_schema(&self, other: &Schema) -> PolarsResult<bool>;
fn ensure_is_exact_match(&self, other: &Schema) -> PolarsResult<()>;
}Required Methods§
fn matches_schema(&self, other: &Schema) -> PolarsResult<bool>
fn ensure_is_exact_match(&self, other: &Schema) -> PolarsResult<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".