Trait pallet_loans::WeightInfo
source · 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§
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
Object Safety§
This trait is not object safe.