pub trait MarshallMessage: Debug { type Input; // Required method fn marshall(&self, input: Self::Input) -> Result<Message, Error>; }
Converts a Smithy modeled Event Stream type into a Message.
Message
Smithy modeled input type to convert from.