Skip to main content

PropResult

Type Alias PropResult 

Source
pub type PropResult = Option<usize>;
Expand description

Outcome of a propagation step: Some(ci) on wipe-out (constraint ci is to blame), None on success.

Aliased Type§

pub enum PropResult {
    None,
    Some(usize),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(usize)

Some value of type T.