Function serde_yaml::seed::from_slice_seed
source · [−]pub fn from_slice_seed<T, S>(v: &[u8], seed: S) -> Result<T> where
S: for<'de> DeserializeSeed<'de, Value = T>,
Expand description
Deserialize an instance of type T
from bytes of YAML text with a seed.
This conversion can fail if the structure of the Value does not match the
structure expected by T
, for example if T
is a struct type but the Value
contains something other than a YAML map. It can also fail if the structure
is correct but T
’s implementation of Deserialize
decides that something
is wrong with the data, for example required struct fields are missing from
the YAML map or some number is too big to fit in the expected primitive
type.
YAML currently does not support zero-copy deserialization.