RequestInner

Trait RequestInner 

Source
pub trait RequestInner<K>
where K: HashKind, Self: Sized,
{ // Required method fn request_inner<Op>(self, id: StateId<K>) -> UnaryRequest<K, Op> where Op: Operation + From<Self>; }

Required Methods§

Source

fn request_inner<Op>(self, id: StateId<K>) -> UnaryRequest<K, Op>
where Op: Operation + From<Self>,

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.

Implementors§

Source§

impl<K, T> RequestInner<K> for T
where K: HashKind,