pub type MessageContent = Either<String, Vec<IndexMap<String, Value>>>;
enum MessageContent { Left(String), Right(Vec<IndexMap<String, Value>>), }
A value of type L.
L
A value of type R.
R