Type Alias StlResult

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

Result type for .stl file operations

Aliased Type§

pub enum StlResult<T> {
    Ok(T),
    Err(StlError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(StlError)

Contains the error value