Type Alias laz::Result

source ·
pub type Result<T> = Result<T, LasZipError>;
Expand description

Shortcut for Results of this crate.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(LasZipError)

Contains the error value