pub trait PublicKeyObj: SubDescType + Clone {
    // Required methods
    fn from_type_less(
        single: Option<PublicKey>,
        mn: Option<MNPublicKey>
    ) -> BuckyResult<Self>;
    fn has_single_key(&self) -> bool;
    fn has_mn_key(&self) -> bool;
}

Required Methods§

Implementors§