pub trait GetSignatureMut: GetSignature {
    fn signature_mut(&mut self) -> Option<&mut Proof>;
}
Expand description

A trait for types that can provide a mutable reference to a Proof.

Required Methods

Returns a mutable reference to the Proof object, if any.

Implementations on Foreign Types

Implementors