Type Alias serde_bencoded::SerResult

source ·
pub type SerResult<T> = Result<T, SerError>;

Aliased Type§

enum SerResult<T> {
    Ok(T),
    Err(SerError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(SerError)

Contains the error value