pub trait WeightInfo {
    // Required methods
    fn update_invest_order() -> Weight;
    fn update_redeem_order() -> Weight;
    fn collect_investments(n: u32) -> Weight;
    fn collect_redemptions(n: u32) -> Weight;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl WeightInfo for ()

Implementors§