#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum PolarsKind {
NotNull,
NullRatioMax,
Unique,
CompositeUnique,
DuplicateRatioMax,
RowCountMin,
RowCountMax,
RowCountBetween,
ColumnExists,
ColumnMissing,
DTypeIs,
SchemaEquals,
ValueMin,
ValueMax,
ValueBetween,
MeanBetween,
StdDevMax,
SumBetween,
DateBetween,
NoFutureDates,
MonotonicIncreasing,
NoGapsInSequence,
RegexMatch,
StringLengthMin,
StringLengthMax,
StringLengthBetween,
AllowedValues,
ForbiddenValues,
OutlierRatioMax,
PercentileBetween,
ForeignKey,
ColumnEquals,
ConditionalNotNull,
CustomExpr,
}