pub trait WeightInfo {
Show 14 methods // Required methods fn create() -> Weight; fn borrow(n: u32) -> Weight; fn repay(n: u32) -> Weight; fn write_off(n: u32) -> Weight; fn admin_write_off(n: u32) -> Weight; fn propose_loan_mutation(n: u32) -> Weight; fn apply_loan_mutation(n: u32) -> Weight; fn close(n: u32) -> Weight; fn propose_write_off_policy() -> Weight; fn apply_write_off_policy() -> Weight; fn update_portfolio_valuation(n: u32) -> Weight; fn propose_transfer_debt(n: u32) -> Weight; fn apply_transfer_debt(n: u32) -> Weight; fn increase_debt(n: u32) -> Weight;
}

Required Methods§

source

fn create() -> Weight

source

fn borrow(n: u32) -> Weight

source

fn repay(n: u32) -> Weight

source

fn write_off(n: u32) -> Weight

source

fn admin_write_off(n: u32) -> Weight

source

fn propose_loan_mutation(n: u32) -> Weight

source

fn apply_loan_mutation(n: u32) -> Weight

source

fn close(n: u32) -> Weight

source

fn propose_write_off_policy() -> Weight

source

fn apply_write_off_policy() -> Weight

source

fn update_portfolio_valuation(n: u32) -> Weight

source

fn propose_transfer_debt(n: u32) -> Weight

source

fn apply_transfer_debt(n: u32) -> Weight

source

fn increase_debt(n: u32) -> Weight

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl WeightInfo for ()

source§

fn create() -> Weight

source§

fn borrow(_: u32) -> Weight

source§

fn repay(_: u32) -> Weight

source§

fn write_off(_: u32) -> Weight

source§

fn admin_write_off(_: u32) -> Weight

source§

fn close(_: u32) -> Weight

source§

fn propose_loan_mutation(_: u32) -> Weight

source§

fn apply_loan_mutation(_: u32) -> Weight

source§

fn propose_write_off_policy() -> Weight

source§

fn apply_write_off_policy() -> Weight

source§

fn update_portfolio_valuation(_: u32) -> Weight

source§

fn propose_transfer_debt(_: u32) -> Weight

source§

fn apply_transfer_debt(_: u32) -> Weight

source§

fn increase_debt(_: u32) -> Weight

Implementors§