usecrate::{nest::NestValueType,transform::Transform,};/// Fallible version of [`BuildNestValue`](crate::BuildNestValue)
////// See [`BuildNestValue`](crate::BuildNestValue) for more information
pubtraitTryBuildNestValue<T, V>: Transform
where
V: NestValueType
{typeError;fntry_build_nest_value(&self, source:&T, options:&Self::Options)->Result<V, Self::Error>;}