pub trait MarshallMessage: Debug {
type Input;
// Required method
fn marshall(&self, input: Self::Input) -> Result<Message, Error>;
}Expand description
Converts a Smithy modeled Event Stream type into a Message.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".