Type Alias kitsune_p2p_types::KitsuneResult

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

Result type for remote communication.

Aliased Type§

enum KitsuneResult<T> {
    Ok(T),
    Err(KitsuneError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(KitsuneError)

Contains the error value