IntoHead

Trait IntoHead 

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

Consumes the caller to convert it into a Head.

Required Methods§

Source

fn into_head(self) -> Head<Q, A>

Implementors§

Source§

impl<Q, A, T> IntoHead<Q, A> for T
where Q: RawState, T: Into<Head<Q, A>>,