Skip to main content

BooleanDefaultFalse

Type Alias BooleanDefaultFalse 

Source
pub type BooleanDefaultFalse = Option<bool>;
Expand description

Boolean that defaults to false when None.

Aliased Type§

pub enum BooleanDefaultFalse {
    None,
    Some(bool),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(bool)

Some value of type T.