usecrate::value_error::ValueResult;/// Internal trait used to add a single value to `MultiValues`.
////// This trait backs `MultiValues::add<S>()`; downstream code should call the
/// inherent method instead of implementing or naming this trait directly.
#[doc(hidden)]pubtraitMultiValuesAdder<T> {/// Appends `value` to the stored values.
////// # Returns
////// Returns `Ok(())` when the value can be appended, or a `ValueError`
/// describing the type mismatch.
fnadd_value(&mutself, value: T)->ValueResult<()>;}