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

    const NAME: &'static str;
}
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 NAME: &'static str

The name of the operation.

Implementors§