IntoTail

Trait IntoTail 

Source
pub trait IntoTail<Q, A>
where Q: RawState,
{ // Required method fn into_tail(self) -> Tail<Q, A>; }
Expand description

A consuming trait for converting a type into a Tail.

Required Methods§

Source

fn into_tail(self) -> Tail<Q, A>

Implementors§

Source§

impl<Q, A, T> IntoTail<Q, A> for T
where Q: RawState, T: Into<Tail<Q, A>>,