Enum kailua_types::ty::Nil [] [src]

pub enum Nil {
    Silent,
    Noisy,
    Absent,
}

Different kinds of nil.

Variants

nil is assumed to be present, but the assumption is not checked.

nil is assumed to be present, and the assumption gets checked (e.g. integer? doesn't support arithmetic operations).

nil is assumed to be absent.

Methods

impl Nil
[src]

Trait Implementations

impl Copy for Nil
[src]

impl Clone for Nil
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Nil
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Nil
[src]

impl Debug for Nil
[src]

Formats the value using the given formatter.