pub trait UnmarshallMessage: Debug {
    type Output;
    type Error;

    fn unmarshall(
        &self,
        message: &Message
    ) -> Result<UnmarshalledMessage<Self::Output, Self::Error>, Error>; }
Expand description

Converts an Event Stream Message into a Smithy modeled type.

Required Associated Types

Smithy modeled type to convert into.

Smithy modeled error to convert into.

Required Methods

Implementors