pub trait IntoTail<Q, A>where Q: RawState,{ // Required method fn into_tail(self) -> Tail<Q, A>; }
A consuming trait for converting a type into a Tail.
Tail