pub trait ViewInternals {
    type ModuleType;
    type Inner;

    // Required methods
    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§

source

fn module(&self) -> Self::ModuleType

source

fn as_inner(&self) -> Self::Inner

Implementors§