Type Alias GroupResult

Source
pub type GroupResult<T, ID, OP, PKI, DGM, KMG, ORD> = Result<(GroupState<ID, OP, PKI, DGM, KMG, ORD>, T), GroupError<ID, OP, PKI, DGM, KMG, ORD>>;

Aliased Type§

pub enum GroupResult<T, ID, OP, PKI, DGM, KMG, ORD> {
    Ok((GroupState<ID, OP, PKI, DGM, KMG, ORD>, T)),
    Err(GroupError<ID, OP, PKI, DGM, KMG, ORD>),
}

Variants§

§1.0.0

Ok((GroupState<ID, OP, PKI, DGM, KMG, ORD>, T))

Contains the success value

§1.0.0

Err(GroupError<ID, OP, PKI, DGM, KMG, ORD>)

Contains the error value