pub type WebauthnResult<T> = Result<T, WebauthnError>;
Expand description

A wrapper for Result<T, WebauthnError>

Aliased Type§

enum WebauthnResult<T> {
    Ok(T),
    Err(WebauthnError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(WebauthnError)

Contains the error value