Skip to main content

VerifyResult

Type Alias VerifyResult 

Source
pub type VerifyResult = Result<(), VerifyError>;
Expand description

Unit on success — vtable positions are accumulated into the caller-supplied out: &mut Vec<usize> so the entire traversal shares one allocation.

Aliased Type§

pub enum VerifyResult {
    Ok(()),
    Err(VerifyError),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(VerifyError)

Contains the error value