/// Inspect serializer information before serialization begins.
////// See [`Hooks::on_start`](crate::ser::Hooks::on_start).
pubstructStartScope{is_human_readable:bool,
}implStartScope{pub(crate)fnnew(is_human_readable:bool)->Self{Self{ is_human_readable }}/// Returns `true` if used serializer is expected to produce a human-readable format.
////// See [`serde::ser::Serializer::is_human_readable`] for more info.
pubfnis_format_human_readable(&self)->bool{self.is_human_readable
}}