Trait enso_prelude::ToImpl[][src]

pub trait ToImpl: Sized {
    fn to<P>(self) -> P
    where
        Self: Into<P>
, { ... } }
Expand description

Provides method to, which is just like into but allows fo superfish syntax.

Provided methods

fn to<P>(self) -> P where
    Self: Into<P>, 
[src]

Implementors

impl<T> ToImpl for T[src]