pub trait Request {
    type Action: Action;
    type Response;
    type Error: ApiError;

    const ACTION: Self::Action;
}
Expand description

Basic request definition.

Required Associated Types§

Required Associated Constants§

source

const ACTION: Self::Action

Object Safety§

This trait is not object safe.

Implementors§