pub trait MapAuth<A, B>where
A: Authorization,
B: Authorization,{
// Required methods
fn map_script_sig(
&self,
s: <A as Authorization>::ScriptSig,
) -> <B as Authorization>::ScriptSig;
fn map_authorization(&self, s: A) -> B;
}
Required Methods§
fn map_script_sig( &self, s: <A as Authorization>::ScriptSig, ) -> <B as Authorization>::ScriptSig
Implementations on Foreign Types§
Source§impl MapAuth<Authorized, Authorized> for ()
The identity map.
impl MapAuth<Authorized, Authorized> for ()
The identity map.