pub fn from_str_borrowed<'input, T>(
input: &'input str,
) -> Result<T, DeserializeError<XmlError>>where
T: Facet<'input>,Expand description
Deserialize a value from an XML string, allowing borrowing from the input.
Use this when the deserialized type can borrow from the input string
(e.g., contains &'a str fields). The input must outlive the result.
For most use cases, prefer from_str which produces owned types.