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§
Ok((GroupState<ID, OP, PKI, DGM, KMG, ORD>, T))
Contains the success value
Err(GroupError<ID, OP, PKI, DGM, KMG, ORD>)
Contains the error value