Trait enso_prelude::HasItem[][src]

pub trait HasItem {
    type Item;
}
Expand description

Type family for structures containing items.

Associated Types

Implementations on Foreign Types

impl<T> HasItem for Option<T>[src]

type Item = T

Implementors

impl<T> HasItem for Cell<T>[src]

type Item = T

impl<T> HasItem for RefCell<T>[src]

type Item = T