pub type GossipResult<T> = Result<T, GossipError>;

Aliased Type§

enum GossipResult<T> {
    Ok(T),
    Err(GossipError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(GossipError)

Contains the error value