Skip to main content

KeyResult

Type Alias KeyResult 

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

Result type for key operations

Aliased Type§

pub enum KeyResult<T> {
    Ok(T),
    Err(KeyParseError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(KeyParseError)

Contains the error value