Trait xcm_calls::PalletCallEncoder[][src]

pub trait PalletCallEncoder {
    type Context;
    fn can_encode(ctx: &Self::Context) -> bool;
}
Expand description

Common trait for encoders of pallet calls

Associated Types

The type used to determine whether this encoder can be applied.

Required methods

Whether the encoder can be applied

Implementors