pub type Signer = Either<DidKeyPair, SecretKey>;
enum Signer { Left(DidKeyPair), Right(SecretKey), }
A value of type L.
L
A value of type R.
R