pub trait ValueLike {
// Required methods
fn as_float(&self) -> Option<f64>;
fn as_str(&self) -> Option<Cow<'_, str>>;
}Expand description
A trait for extracting typed values from attribute values.
Provides methods for converting attribute values to common types used in sampling logic.