pub trait Tweakable {
// Required method
fn tweak<Ctx, Ctr>(&self, tweak: &Ctr, secp: &Secp256k1<Ctx>) -> Self
where Ctx: Verification + Signing,
Ctr: Contract;
}
Expand description
A key or object containing keys that may be tweaked for pay-to-contract constructions
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.