pub trait RenderState {
    type State: 'static;

    fn create_state(&self) -> Self::State;
}

Required Associated Types

Required Methods

Implementors