pub trait OperationShape {
type Input;
type Output;
type Error;
const ID: ShapeId;
}
Expand description
Models the Smithy Operation shape.
Required Associated Constants§
Required Associated Types§
Sourcetype Error
type Error
The operation error. Infallible
in the case where no error
exists.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.