pub trait DelegateFee<Call, Acc> {
// Required method
fn delegate_fee(call: &Call, who: &Acc) -> Option<Acc>;
}Expand description
Trait that is used to “delegate fee” by optionally changing the payer target (account id) for the applied call.
Required Methods§
fn delegate_fee(call: &Call, who: &Acc) -> Option<Acc>
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.