pub trait RecommendedFillers: Network {
type RecommendedFillers: TxFiller<Self>;
// Required method
fn recommended_fillers() -> Self::RecommendedFillers;
}
Expand description
A trait which may be used to configure default fillers for Network implementations.
Required Associated Types§
Sourcetype RecommendedFillers: TxFiller<Self>
type RecommendedFillers: TxFiller<Self>
Recommended fillers for this network.
Required Methods§
Sourcefn recommended_fillers() -> Self::RecommendedFillers
fn recommended_fillers() -> Self::RecommendedFillers
Returns the recommended filler for this provider.
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.