Trait type_weave::Layer

source ·
pub trait Layer<T, U> {
    // Required method
    fn into_layered(lower: T, upper: U) -> Self;
}

Required Methods§

source

fn into_layered(lower: T, upper: U) -> Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Layer<bool, bool> for bool

source§

fn into_layered(lower: bool, upper: bool) -> Self

source§

impl<T> Layer<Option<T>, Option<T>> for Option<T>

source§

fn into_layered(lower: Option<T>, upper: Option<T>) -> Self

Implementors§