usecrate::value_error::ValueResult;/// Internal trait used to extract specific types from `Value`.
////// This trait backs `Value::get<T>()`; downstream code should call the
/// inherent method instead of implementing or naming this trait directly.
#[doc(hidden)]pubtraitValueGetter<T> {/// Gets the value as `T`.
////// # Returns
////// Returns the typed value when the stored variant matches `T`, or a
/// `ValueError` describing the mismatch or missing value.
fnget_value(&self)->ValueResult<T>;}