pub trait RichcmpSigner: SignerTraitWrapper {
    // Provided method
    fn richcmp(
        &self,
        other: impl SignerTraitWrapper,
        op: CompareOp
    ) -> PyResult<bool> { ... }
}

Provided Methods§

source

fn richcmp( &self, other: impl SignerTraitWrapper, op: CompareOp ) -> PyResult<bool>

Object Safety§

This trait is not object safe.

Implementors§