pub trait Validate {
// Provided method
fn validate(v: f64) -> Result<f64, ValueErrorKind> { ... }
}
Expand description
Used for the V
type parameter of CssLength<N: Normalize, V: Validate>
.
Provided Methods§
Object Safety§
This trait is not object safe.