pub trait Schemable<Addr, Conf, Cont, Data> {
    fn constructor(&self, address: Addr, config: Conf, data: Data) -> Cont
    where
        Self: Sized
; }

Required Methods

Implementors