Type Alias Cell

Source
pub type Cell<'a> = Option<Unit<'a>>;
Expand description

A type for describing components of Node: a real element of Unit or a virtual element None.

Aliased Type§

pub enum Cell<'a> {
    None,
    Some(Unit<'a>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(Unit<'a>)

Some value of type T.