Skip to main content

Result

Type Alias Result 

Source
pub type Result<T> = Result<T, VsdbError>;
Expand description

Alias for std::result::Result<T, VsdbError>.

Aliased Type§

pub enum Result<T> {
    Ok(T),
    Err(VsdbError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(VsdbError)

Contains the error value