Macro TypeFn

Source
macro_rules! TypeFn {
    (for <> $T:ty) => { ... };
    (for <$lt0:lifetime $(,$lt:lifetime)* $(,)?> $T:ty) => { ... };
    ($T:ty) => { ... };
}
Expand description

Evaluates to a TypeFn implementation.

§Usage

TypeFn![for<'x, 'y, 'z> (Cow<'x, str>, &'y str, &'z mut [u8])]