pubtraitRepr<T>
where
Self: Sized,
{/// Convert a raw type to the common representation.
fnfrom(v: T)->Self;/// Try to convert the representation back into one of the raw message types.
fntry_into(self)->Result<T, Self>;/// Check whether the representation can be turned into this raw type, without consuming.
fncan_into(&self)->bool;}modjson_string_repr;pubusejson_string_repr::*;modbox_any_repr;pubusebox_any_repr::*;