ListLink

Type Alias ListLink 

Source
pub type ListLink = Option<Box<ListNode>>;

Aliased Type§

pub enum ListLink {
    None,
    Some(Box<ListNode>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(Box<ListNode>)

Some value of type T.

Trait Implementations§