pub trait OperationShape {
type Input;
type Output;
type Error;
const ID: ShapeId;
}
Expand description
Models the Smithy Operation shape.
Required Associated Types§
sourcetype Error
type Error
The operation error. Infallible
in the case where no error
exists.