logo
pub trait ClosedView {
    type Key: Key;
    type Entity: Entity<Key = Self::Key>;

    fn key(&self) -> Self::Key;
}

Required Associated Types

Required Methods

Implementors