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.
Required Associated Constants§
Object Safety§
This trait is not object safe.