use crate::;
use Cow;
/// Trait to serialize attributes and inner text
///
/// This is implemented my "marker" types to decide how to serialize a type (the same type can be
/// serialized differently depending on the marker type)
/// Implements `Value` for all types implementing `std::fmt::Display`; this is a good default.
;
/// Implements `Value` for all types implementing `AsRef<str>`.
;