We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SignerMut
1 parent 39a27c2 commit 4e44724Copy full SHA for 4e44724
signature/src/signer.rs
@@ -55,13 +55,6 @@ pub trait SignerMut<S> {
55
fn try_sign(&mut self, msg: &[u8]) -> Result<S, Error>;
56
}
57
58
-/// Blanket impl of [`SignerMut`] for all [`Signer`] types.
59
-impl<S, T: Signer<S>> SignerMut<S> for T {
60
- fn try_sign(&mut self, msg: &[u8]) -> Result<S, Error> {
61
- T::try_sign(self, msg)
62
- }
63
-}
64
-
65
/// Sign the given prehashed message [`Digest`] using `Self`.
66
///
67
/// ## Notes
0 commit comments