#![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)]
#![allow(unused_imports)]
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
use core::marker::PhantomData;
pub trait WeightInfo {
fn reserve_ids(c: u32) -> Weight;
fn renew_id_reservation() -> Weight;
fn cancel_id_reservation() -> Weight;
fn recognize_personhood(c: u32) -> Weight;
fn suspend_personhood(c: u32) -> Weight;
fn resume_personhood() -> Weight;
fn start_mutation_session() -> Weight;
fn end_mutation_session() -> Weight;
}
pub struct SubstrateWeight<T>(PhantomData<T>);
impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
fn reserve_ids(_c: u32) -> Weight { Weight::zero() }
fn renew_id_reservation() -> Weight { Weight::zero() }
fn cancel_id_reservation() -> Weight { Weight::zero() }
fn recognize_personhood(_c: u32) -> Weight { Weight::zero() }
fn suspend_personhood(_c: u32) -> Weight { Weight::zero() }
fn resume_personhood() -> Weight { Weight::zero() }
fn start_mutation_session() -> Weight { Weight::zero() }
fn end_mutation_session() -> Weight { Weight::zero() }
}
impl WeightInfo for () {
fn reserve_ids(_c: u32) -> Weight { Weight::zero() }
fn renew_id_reservation() -> Weight { Weight::zero() }
fn cancel_id_reservation() -> Weight { Weight::zero() }
fn recognize_personhood(_c: u32) -> Weight { Weight::zero() }
fn suspend_personhood(_c: u32) -> Weight { Weight::zero() }
fn resume_personhood() -> Weight { Weight::zero() }
fn start_mutation_session() -> Weight { Weight::zero() }
fn end_mutation_session() -> Weight { Weight::zero() }
}