pub trait ViewInternals {
    type ModuleType;
    type Inner;

    fn module(&self) -> Self::ModuleType;
    fn as_inner(&self) -> Self::Inner;
}
Expand description

This is used to expose some view internals to checks and other areas. This might be exposed to external code in the future.

Required Associated Types

Required Methods

Implementors