pub trait Validate {
// Required methods
fn has_shape(self, shape: (usize, usize)) -> Self;
fn has_cols(self, columns: Vec<&str>) -> Self;
fn has_length(self, length: Comparison) -> Self;
fn validate<S>(self, expr: Expr) -> Self;
}
Required Methods§
Sourcefn has_length(self, length: Comparison) -> Self
fn has_length(self, length: Comparison) -> Self
Validate the length of the dataframe
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.