referrerpolicy=no-referrer-when-downgrade

Trait polkadot_sdk_frame::arithmetic::MultiplyArg

pub trait MultiplyArg: Clone + Rem<Output = Self> + Div<Output = Self> + Mul<Output = Self> + Add<Output = Self> + Unsigned { }

Object Safety§

This trait is not object safe.

Implementors§

§

impl<T> MultiplyArg for T
where T: Div<Output = T> + Clone + Mul<Output = T> + Rem<Output = T> + Add<Output = T> + Unsigned,