pub trait Signers {
    fn pubkeys(&self) -> Vec<Pubkey>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
; fn try_pubkeys(&self) -> Result<Vec<Pubkey>, SignerError>; fn sign_message(&self, message: &[u8]) -> Vec<Signature>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
; fn try_sign_message(
        &self,
        message: &[u8]
    ) -> Result<Vec<Signature>, SignerError>; fn is_interactive(&self) -> bool; }
Expand description

Convenience trait for working with mixed collections of Signers

Required Methods

Implementations on Foreign Types

Implementors