pub trait OperationShape {
    type Input;
    type Output;
    type Error;

    const ID: ShapeId;
}
Expand description

Required Associated Types§

source

type Input

The operation input.

source

type Output

The operation output.

source

type Error

The operation error. Infallible in the case where no error exists.

Required Associated Constants§

source

const ID: ShapeId

The ID of the operation.

Object Safety§

This trait is not object safe.

Implementors§