Type Alias shadow_rs::SdResult

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

Results returned by the shadow-rs build process. For more information see ShadowError.

Aliased Type§

enum SdResult<T> {
    Ok(T),
    Err(ShadowError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ShadowError)

Contains the error value