pub trait Sub<Rhs = Self> {
type Output;
// Required method
fn sub(self, rhs: Rhs) -> Self::Output;
}
Expand description
The subtraction operator -
.
Note that Rhs
is Self
by default, but this is not mandatory. For
example, std::time::SystemTime
implements Sub<Duration>
, which permits
operations of the form SystemTime = SystemTime - Duration
.
§Examples
§Sub
tractable points
use std::ops::Sub;
#[derive(Debug, Copy, Clone, PartialEq)]
struct Point {
x: i32,
y: i32,
}
impl Sub for Point {
type Output = Self;
fn sub(self, other: Self) -> Self::Output {
Self {
x: self.x - other.x,
y: self.y - other.y,
}
}
}
assert_eq!(Point { x: 3, y: 3 } - Point { x: 2, y: 3 },
Point { x: 1, y: 0 });
§Implementing Sub
with generics
Here is an example of the same Point
struct implementing the Sub
trait
using generics.
use std::ops::Sub;
#[derive(Debug, PartialEq)]
struct Point<T> {
x: T,
y: T,
}
// Notice that the implementation uses the associated type `Output`.
impl<T: Sub<Output = T>> Sub for Point<T> {
type Output = Self;
fn sub(self, other: Self) -> Self::Output {
Point {
x: self.x - other.x,
y: self.y - other.y,
}
}
}
assert_eq!(Point { x: 2, y: 3 } - Point { x: 1, y: 0 },
Point { x: 1, y: 3 });
Required Associated Types§
Required Methods§
Implementors§
1.74.0 · Source§impl Sub for Saturating<i8>
impl Sub for Saturating<i8>
type Output = Saturating<i8>
1.74.0 · Source§impl Sub for Saturating<i16>
impl Sub for Saturating<i16>
type Output = Saturating<i16>
1.74.0 · Source§impl Sub for Saturating<i32>
impl Sub for Saturating<i32>
type Output = Saturating<i32>
1.74.0 · Source§impl Sub for Saturating<i64>
impl Sub for Saturating<i64>
type Output = Saturating<i64>
1.74.0 · Source§impl Sub for Saturating<i128>
impl Sub for Saturating<i128>
type Output = Saturating<i128>
1.74.0 · Source§impl Sub for Saturating<isize>
impl Sub for Saturating<isize>
type Output = Saturating<isize>
1.74.0 · Source§impl Sub for Saturating<u8>
impl Sub for Saturating<u8>
type Output = Saturating<u8>
1.74.0 · Source§impl Sub for Saturating<u16>
impl Sub for Saturating<u16>
type Output = Saturating<u16>
1.74.0 · Source§impl Sub for Saturating<u32>
impl Sub for Saturating<u32>
type Output = Saturating<u32>
1.74.0 · Source§impl Sub for Saturating<u64>
impl Sub for Saturating<u64>
type Output = Saturating<u64>
1.74.0 · Source§impl Sub for Saturating<u128>
impl Sub for Saturating<u128>
type Output = Saturating<u128>
1.74.0 · Source§impl Sub for Saturating<usize>
impl Sub for Saturating<usize>
type Output = Saturating<usize>
Source§impl Sub for Effects
§Examples
let effects = (anstyle::Effects::BOLD | anstyle::Effects::UNDERLINE) - anstyle::Effects::BOLD;
assert_eq!(format!("{:?}", effects), "Effects(UNDERLINE)");
impl Sub for Effects
§Examples
let effects = (anstyle::Effects::BOLD | anstyle::Effects::UNDERLINE) - anstyle::Effects::BOLD;
assert_eq!(format!("{:?}", effects), "Effects(UNDERLINE)");
Source§impl Sub for EdwardsPoint
impl Sub for EdwardsPoint
type Output = EdwardsPoint
Source§impl Sub for RistrettoPoint
impl Sub for RistrettoPoint
type Output = RistrettoPoint
Source§impl Sub for StaticVarApiFlags
impl Sub for StaticVarApiFlags
type Output = StaticVarApiFlags
Source§impl Sub for WasmFeatures
impl Sub for WasmFeatures
type Output = WasmFeatures
Source§impl Sub for SegmentFlags
impl Sub for SegmentFlags
type Output = SegmentFlags
Source§impl Sub for SymbolFlags
impl Sub for SymbolFlags
type Output = SymbolFlags
Source§impl Sub for CodeMetadata
impl Sub for CodeMetadata
type Output = CodeMetadata
Source§impl Sub for ConstDecimals<0>
impl Sub for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<1>
impl Sub for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<2>
impl Sub for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<3>
impl Sub for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<4>
impl Sub for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<5>
impl Sub for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<6>
impl Sub for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<7>
impl Sub for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<8>
impl Sub for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<9>
impl Sub for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<10>
impl Sub for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<11>
impl Sub for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<12>
impl Sub for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<13>
impl Sub for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<14>
impl Sub for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<15>
impl Sub for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<16>
impl Sub for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<17>
impl Sub for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<18>
impl Sub for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<19>
impl Sub for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<20>
impl Sub for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<21>
impl Sub for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<22>
impl Sub for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<23>
impl Sub for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<24>
impl Sub for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<25>
impl Sub for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<26>
impl Sub for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<27>
impl Sub for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<28>
impl Sub for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<29>
impl Sub for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<30>
impl Sub for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<31>
impl Sub for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<32>
impl Sub for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<33>
impl Sub for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<34>
impl Sub for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<35>
impl Sub for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<36>
impl Sub for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<37>
impl Sub for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<38>
impl Sub for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<39>
impl Sub for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<40>
impl Sub for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<41>
impl Sub for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<42>
impl Sub for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<43>
impl Sub for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<44>
impl Sub for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<45>
impl Sub for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<46>
impl Sub for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<47>
impl Sub for ConstDecimals<47>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<48>
impl Sub for ConstDecimals<48>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<49>
impl Sub for ConstDecimals<49>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<50>
impl Sub for ConstDecimals<50>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<51>
impl Sub for ConstDecimals<51>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<52>
impl Sub for ConstDecimals<52>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<53>
impl Sub for ConstDecimals<53>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<54>
impl Sub for ConstDecimals<54>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<55>
impl Sub for ConstDecimals<55>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<56>
impl Sub for ConstDecimals<56>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<57>
impl Sub for ConstDecimals<57>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<58>
impl Sub for ConstDecimals<58>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<59>
impl Sub for ConstDecimals<59>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<60>
impl Sub for ConstDecimals<60>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<61>
impl Sub for ConstDecimals<61>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<62>
impl Sub for ConstDecimals<62>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<63>
impl Sub for ConstDecimals<63>
type Output = ConstDecimals<0>
Source§impl Sub for ConstDecimals<64>
impl Sub for ConstDecimals<64>
type Output = ConstDecimals<0>
Source§impl Sub for EsdtLocalRoleFlags
impl Sub for EsdtLocalRoleFlags
type Output = EsdtLocalRoleFlags
Source§impl Sub<&u128> for &multiversx_sc_snippets::imports::RustBigUint
impl Sub<&u128> for &multiversx_sc_snippets::imports::RustBigUint
Source§impl Sub<&usize> for &multiversx_sc_snippets::imports::RustBigUint
impl Sub<&usize> for &multiversx_sc_snippets::imports::RustBigUint
Source§impl Sub<&usize> for multiversx_sc_snippets::imports::RustBigUint
impl Sub<&usize> for multiversx_sc_snippets::imports::RustBigUint
1.74.0 · Source§impl Sub<&Saturating<i8>> for &Saturating<i8>
impl Sub<&Saturating<i8>> for &Saturating<i8>
1.74.0 · Source§impl Sub<&Saturating<i8>> for Saturating<i8>
impl Sub<&Saturating<i8>> for Saturating<i8>
1.74.0 · Source§impl Sub<&Saturating<i16>> for &Saturating<i16>
impl Sub<&Saturating<i16>> for &Saturating<i16>
1.74.0 · Source§impl Sub<&Saturating<i16>> for Saturating<i16>
impl Sub<&Saturating<i16>> for Saturating<i16>
1.74.0 · Source§impl Sub<&Saturating<i32>> for &Saturating<i32>
impl Sub<&Saturating<i32>> for &Saturating<i32>
1.74.0 · Source§impl Sub<&Saturating<i32>> for Saturating<i32>
impl Sub<&Saturating<i32>> for Saturating<i32>
1.74.0 · Source§impl Sub<&Saturating<i64>> for &Saturating<i64>
impl Sub<&Saturating<i64>> for &Saturating<i64>
1.74.0 · Source§impl Sub<&Saturating<i64>> for Saturating<i64>
impl Sub<&Saturating<i64>> for Saturating<i64>
1.74.0 · Source§impl Sub<&Saturating<i128>> for &Saturating<i128>
impl Sub<&Saturating<i128>> for &Saturating<i128>
1.74.0 · Source§impl Sub<&Saturating<i128>> for Saturating<i128>
impl Sub<&Saturating<i128>> for Saturating<i128>
1.74.0 · Source§impl Sub<&Saturating<isize>> for &Saturating<isize>
impl Sub<&Saturating<isize>> for &Saturating<isize>
1.74.0 · Source§impl Sub<&Saturating<isize>> for Saturating<isize>
impl Sub<&Saturating<isize>> for Saturating<isize>
1.74.0 · Source§impl Sub<&Saturating<u8>> for &Saturating<u8>
impl Sub<&Saturating<u8>> for &Saturating<u8>
1.74.0 · Source§impl Sub<&Saturating<u8>> for Saturating<u8>
impl Sub<&Saturating<u8>> for Saturating<u8>
1.74.0 · Source§impl Sub<&Saturating<u16>> for &Saturating<u16>
impl Sub<&Saturating<u16>> for &Saturating<u16>
1.74.0 · Source§impl Sub<&Saturating<u16>> for Saturating<u16>
impl Sub<&Saturating<u16>> for Saturating<u16>
1.74.0 · Source§impl Sub<&Saturating<u32>> for &Saturating<u32>
impl Sub<&Saturating<u32>> for &Saturating<u32>
1.74.0 · Source§impl Sub<&Saturating<u32>> for Saturating<u32>
impl Sub<&Saturating<u32>> for Saturating<u32>
1.74.0 · Source§impl Sub<&Saturating<u64>> for &Saturating<u64>
impl Sub<&Saturating<u64>> for &Saturating<u64>
1.74.0 · Source§impl Sub<&Saturating<u64>> for Saturating<u64>
impl Sub<&Saturating<u64>> for Saturating<u64>
1.74.0 · Source§impl Sub<&Saturating<u128>> for &Saturating<u128>
impl Sub<&Saturating<u128>> for &Saturating<u128>
1.74.0 · Source§impl Sub<&Saturating<u128>> for Saturating<u128>
impl Sub<&Saturating<u128>> for Saturating<u128>
1.74.0 · Source§impl Sub<&Saturating<usize>> for &Saturating<usize>
impl Sub<&Saturating<usize>> for &Saturating<usize>
1.74.0 · Source§impl Sub<&Saturating<usize>> for Saturating<usize>
impl Sub<&Saturating<usize>> for Saturating<usize>
Source§impl Sub<&BigInt> for &multiversx_sc_snippets::imports::RustBigInt
impl Sub<&BigInt> for &multiversx_sc_snippets::imports::RustBigInt
Source§impl Sub<&BigUint> for &multiversx_sc_snippets::imports::RustBigUint
impl Sub<&BigUint> for &multiversx_sc_snippets::imports::RustBigUint
Source§impl Sub<&BigUint> for multiversx_sc_snippets::imports::RustBigUint
impl Sub<&BigUint> for multiversx_sc_snippets::imports::RustBigUint
Source§impl Sub<usize> for &multiversx_sc_snippets::imports::RustBigUint
impl Sub<usize> for &multiversx_sc_snippets::imports::RustBigUint
1.8.0 · Source§impl Sub<Duration> for SystemTime
impl Sub<Duration> for SystemTime
type Output = SystemTime
Source§impl Sub<Effects> for Style
§Examples
let style = anstyle::Style::new().bold().underline() - anstyle::Effects::BOLD.into();
impl Sub<Effects> for Style
§Examples
let style = anstyle::Style::new().bold().underline() - anstyle::Effects::BOLD.into();
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<1>
impl Sub<ConstDecimals<0>> for ConstDecimals<1>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<2>
impl Sub<ConstDecimals<0>> for ConstDecimals<2>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<3>
impl Sub<ConstDecimals<0>> for ConstDecimals<3>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<4>
impl Sub<ConstDecimals<0>> for ConstDecimals<4>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<5>
impl Sub<ConstDecimals<0>> for ConstDecimals<5>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<6>
impl Sub<ConstDecimals<0>> for ConstDecimals<6>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<7>
impl Sub<ConstDecimals<0>> for ConstDecimals<7>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<8>
impl Sub<ConstDecimals<0>> for ConstDecimals<8>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<9>
impl Sub<ConstDecimals<0>> for ConstDecimals<9>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<10>
impl Sub<ConstDecimals<0>> for ConstDecimals<10>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<11>
impl Sub<ConstDecimals<0>> for ConstDecimals<11>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<12>
impl Sub<ConstDecimals<0>> for ConstDecimals<12>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<13>
impl Sub<ConstDecimals<0>> for ConstDecimals<13>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<14>
impl Sub<ConstDecimals<0>> for ConstDecimals<14>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<15>
impl Sub<ConstDecimals<0>> for ConstDecimals<15>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<16>
impl Sub<ConstDecimals<0>> for ConstDecimals<16>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<17>
impl Sub<ConstDecimals<0>> for ConstDecimals<17>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<18>
impl Sub<ConstDecimals<0>> for ConstDecimals<18>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<19>
impl Sub<ConstDecimals<0>> for ConstDecimals<19>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<20>
impl Sub<ConstDecimals<0>> for ConstDecimals<20>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<21>
impl Sub<ConstDecimals<0>> for ConstDecimals<21>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<22>
impl Sub<ConstDecimals<0>> for ConstDecimals<22>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<23>
impl Sub<ConstDecimals<0>> for ConstDecimals<23>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<24>
impl Sub<ConstDecimals<0>> for ConstDecimals<24>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<25>
impl Sub<ConstDecimals<0>> for ConstDecimals<25>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<26>
impl Sub<ConstDecimals<0>> for ConstDecimals<26>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<27>
impl Sub<ConstDecimals<0>> for ConstDecimals<27>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<28>
impl Sub<ConstDecimals<0>> for ConstDecimals<28>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<29>
impl Sub<ConstDecimals<0>> for ConstDecimals<29>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<30>
impl Sub<ConstDecimals<0>> for ConstDecimals<30>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<31>
impl Sub<ConstDecimals<0>> for ConstDecimals<31>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<32>
impl Sub<ConstDecimals<0>> for ConstDecimals<32>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<33>
impl Sub<ConstDecimals<0>> for ConstDecimals<33>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<34>
impl Sub<ConstDecimals<0>> for ConstDecimals<34>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<35>
impl Sub<ConstDecimals<0>> for ConstDecimals<35>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<36>
impl Sub<ConstDecimals<0>> for ConstDecimals<36>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<37>
impl Sub<ConstDecimals<0>> for ConstDecimals<37>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<38>
impl Sub<ConstDecimals<0>> for ConstDecimals<38>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<39>
impl Sub<ConstDecimals<0>> for ConstDecimals<39>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<40>
impl Sub<ConstDecimals<0>> for ConstDecimals<40>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<41>
impl Sub<ConstDecimals<0>> for ConstDecimals<41>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<42>
impl Sub<ConstDecimals<0>> for ConstDecimals<42>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<43>
impl Sub<ConstDecimals<0>> for ConstDecimals<43>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<44>
impl Sub<ConstDecimals<0>> for ConstDecimals<44>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<45>
impl Sub<ConstDecimals<0>> for ConstDecimals<45>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<46>
impl Sub<ConstDecimals<0>> for ConstDecimals<46>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<47>
impl Sub<ConstDecimals<0>> for ConstDecimals<47>
type Output = ConstDecimals<47>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<48>
impl Sub<ConstDecimals<0>> for ConstDecimals<48>
type Output = ConstDecimals<48>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<49>
impl Sub<ConstDecimals<0>> for ConstDecimals<49>
type Output = ConstDecimals<49>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<50>
impl Sub<ConstDecimals<0>> for ConstDecimals<50>
type Output = ConstDecimals<50>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<51>
impl Sub<ConstDecimals<0>> for ConstDecimals<51>
type Output = ConstDecimals<51>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<52>
impl Sub<ConstDecimals<0>> for ConstDecimals<52>
type Output = ConstDecimals<52>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<53>
impl Sub<ConstDecimals<0>> for ConstDecimals<53>
type Output = ConstDecimals<53>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<54>
impl Sub<ConstDecimals<0>> for ConstDecimals<54>
type Output = ConstDecimals<54>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<55>
impl Sub<ConstDecimals<0>> for ConstDecimals<55>
type Output = ConstDecimals<55>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<56>
impl Sub<ConstDecimals<0>> for ConstDecimals<56>
type Output = ConstDecimals<56>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<57>
impl Sub<ConstDecimals<0>> for ConstDecimals<57>
type Output = ConstDecimals<57>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<58>
impl Sub<ConstDecimals<0>> for ConstDecimals<58>
type Output = ConstDecimals<58>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<59>
impl Sub<ConstDecimals<0>> for ConstDecimals<59>
type Output = ConstDecimals<59>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<60>
impl Sub<ConstDecimals<0>> for ConstDecimals<60>
type Output = ConstDecimals<60>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<61>
impl Sub<ConstDecimals<0>> for ConstDecimals<61>
type Output = ConstDecimals<61>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<62>
impl Sub<ConstDecimals<0>> for ConstDecimals<62>
type Output = ConstDecimals<62>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<63>
impl Sub<ConstDecimals<0>> for ConstDecimals<63>
type Output = ConstDecimals<63>
Source§impl Sub<ConstDecimals<0>> for ConstDecimals<64>
impl Sub<ConstDecimals<0>> for ConstDecimals<64>
type Output = ConstDecimals<64>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<0>
impl Sub<ConstDecimals<1>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<2>
impl Sub<ConstDecimals<1>> for ConstDecimals<2>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<3>
impl Sub<ConstDecimals<1>> for ConstDecimals<3>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<4>
impl Sub<ConstDecimals<1>> for ConstDecimals<4>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<5>
impl Sub<ConstDecimals<1>> for ConstDecimals<5>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<6>
impl Sub<ConstDecimals<1>> for ConstDecimals<6>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<7>
impl Sub<ConstDecimals<1>> for ConstDecimals<7>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<8>
impl Sub<ConstDecimals<1>> for ConstDecimals<8>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<9>
impl Sub<ConstDecimals<1>> for ConstDecimals<9>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<10>
impl Sub<ConstDecimals<1>> for ConstDecimals<10>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<11>
impl Sub<ConstDecimals<1>> for ConstDecimals<11>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<12>
impl Sub<ConstDecimals<1>> for ConstDecimals<12>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<13>
impl Sub<ConstDecimals<1>> for ConstDecimals<13>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<14>
impl Sub<ConstDecimals<1>> for ConstDecimals<14>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<15>
impl Sub<ConstDecimals<1>> for ConstDecimals<15>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<16>
impl Sub<ConstDecimals<1>> for ConstDecimals<16>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<17>
impl Sub<ConstDecimals<1>> for ConstDecimals<17>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<18>
impl Sub<ConstDecimals<1>> for ConstDecimals<18>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<19>
impl Sub<ConstDecimals<1>> for ConstDecimals<19>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<20>
impl Sub<ConstDecimals<1>> for ConstDecimals<20>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<21>
impl Sub<ConstDecimals<1>> for ConstDecimals<21>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<22>
impl Sub<ConstDecimals<1>> for ConstDecimals<22>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<23>
impl Sub<ConstDecimals<1>> for ConstDecimals<23>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<24>
impl Sub<ConstDecimals<1>> for ConstDecimals<24>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<25>
impl Sub<ConstDecimals<1>> for ConstDecimals<25>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<26>
impl Sub<ConstDecimals<1>> for ConstDecimals<26>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<27>
impl Sub<ConstDecimals<1>> for ConstDecimals<27>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<28>
impl Sub<ConstDecimals<1>> for ConstDecimals<28>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<29>
impl Sub<ConstDecimals<1>> for ConstDecimals<29>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<30>
impl Sub<ConstDecimals<1>> for ConstDecimals<30>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<31>
impl Sub<ConstDecimals<1>> for ConstDecimals<31>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<32>
impl Sub<ConstDecimals<1>> for ConstDecimals<32>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<33>
impl Sub<ConstDecimals<1>> for ConstDecimals<33>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<34>
impl Sub<ConstDecimals<1>> for ConstDecimals<34>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<35>
impl Sub<ConstDecimals<1>> for ConstDecimals<35>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<36>
impl Sub<ConstDecimals<1>> for ConstDecimals<36>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<37>
impl Sub<ConstDecimals<1>> for ConstDecimals<37>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<38>
impl Sub<ConstDecimals<1>> for ConstDecimals<38>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<39>
impl Sub<ConstDecimals<1>> for ConstDecimals<39>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<40>
impl Sub<ConstDecimals<1>> for ConstDecimals<40>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<41>
impl Sub<ConstDecimals<1>> for ConstDecimals<41>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<42>
impl Sub<ConstDecimals<1>> for ConstDecimals<42>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<43>
impl Sub<ConstDecimals<1>> for ConstDecimals<43>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<44>
impl Sub<ConstDecimals<1>> for ConstDecimals<44>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<45>
impl Sub<ConstDecimals<1>> for ConstDecimals<45>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<46>
impl Sub<ConstDecimals<1>> for ConstDecimals<46>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<47>
impl Sub<ConstDecimals<1>> for ConstDecimals<47>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<48>
impl Sub<ConstDecimals<1>> for ConstDecimals<48>
type Output = ConstDecimals<47>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<49>
impl Sub<ConstDecimals<1>> for ConstDecimals<49>
type Output = ConstDecimals<48>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<50>
impl Sub<ConstDecimals<1>> for ConstDecimals<50>
type Output = ConstDecimals<49>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<51>
impl Sub<ConstDecimals<1>> for ConstDecimals<51>
type Output = ConstDecimals<50>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<52>
impl Sub<ConstDecimals<1>> for ConstDecimals<52>
type Output = ConstDecimals<51>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<53>
impl Sub<ConstDecimals<1>> for ConstDecimals<53>
type Output = ConstDecimals<52>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<54>
impl Sub<ConstDecimals<1>> for ConstDecimals<54>
type Output = ConstDecimals<53>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<55>
impl Sub<ConstDecimals<1>> for ConstDecimals<55>
type Output = ConstDecimals<54>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<56>
impl Sub<ConstDecimals<1>> for ConstDecimals<56>
type Output = ConstDecimals<55>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<57>
impl Sub<ConstDecimals<1>> for ConstDecimals<57>
type Output = ConstDecimals<56>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<58>
impl Sub<ConstDecimals<1>> for ConstDecimals<58>
type Output = ConstDecimals<57>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<59>
impl Sub<ConstDecimals<1>> for ConstDecimals<59>
type Output = ConstDecimals<58>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<60>
impl Sub<ConstDecimals<1>> for ConstDecimals<60>
type Output = ConstDecimals<59>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<61>
impl Sub<ConstDecimals<1>> for ConstDecimals<61>
type Output = ConstDecimals<60>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<62>
impl Sub<ConstDecimals<1>> for ConstDecimals<62>
type Output = ConstDecimals<61>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<63>
impl Sub<ConstDecimals<1>> for ConstDecimals<63>
type Output = ConstDecimals<62>
Source§impl Sub<ConstDecimals<1>> for ConstDecimals<64>
impl Sub<ConstDecimals<1>> for ConstDecimals<64>
type Output = ConstDecimals<63>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<0>
impl Sub<ConstDecimals<2>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<1>
impl Sub<ConstDecimals<2>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<3>
impl Sub<ConstDecimals<2>> for ConstDecimals<3>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<4>
impl Sub<ConstDecimals<2>> for ConstDecimals<4>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<5>
impl Sub<ConstDecimals<2>> for ConstDecimals<5>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<6>
impl Sub<ConstDecimals<2>> for ConstDecimals<6>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<7>
impl Sub<ConstDecimals<2>> for ConstDecimals<7>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<8>
impl Sub<ConstDecimals<2>> for ConstDecimals<8>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<9>
impl Sub<ConstDecimals<2>> for ConstDecimals<9>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<10>
impl Sub<ConstDecimals<2>> for ConstDecimals<10>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<11>
impl Sub<ConstDecimals<2>> for ConstDecimals<11>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<12>
impl Sub<ConstDecimals<2>> for ConstDecimals<12>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<13>
impl Sub<ConstDecimals<2>> for ConstDecimals<13>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<14>
impl Sub<ConstDecimals<2>> for ConstDecimals<14>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<15>
impl Sub<ConstDecimals<2>> for ConstDecimals<15>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<16>
impl Sub<ConstDecimals<2>> for ConstDecimals<16>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<17>
impl Sub<ConstDecimals<2>> for ConstDecimals<17>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<18>
impl Sub<ConstDecimals<2>> for ConstDecimals<18>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<19>
impl Sub<ConstDecimals<2>> for ConstDecimals<19>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<20>
impl Sub<ConstDecimals<2>> for ConstDecimals<20>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<21>
impl Sub<ConstDecimals<2>> for ConstDecimals<21>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<22>
impl Sub<ConstDecimals<2>> for ConstDecimals<22>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<23>
impl Sub<ConstDecimals<2>> for ConstDecimals<23>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<24>
impl Sub<ConstDecimals<2>> for ConstDecimals<24>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<25>
impl Sub<ConstDecimals<2>> for ConstDecimals<25>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<26>
impl Sub<ConstDecimals<2>> for ConstDecimals<26>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<27>
impl Sub<ConstDecimals<2>> for ConstDecimals<27>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<28>
impl Sub<ConstDecimals<2>> for ConstDecimals<28>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<29>
impl Sub<ConstDecimals<2>> for ConstDecimals<29>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<30>
impl Sub<ConstDecimals<2>> for ConstDecimals<30>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<31>
impl Sub<ConstDecimals<2>> for ConstDecimals<31>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<32>
impl Sub<ConstDecimals<2>> for ConstDecimals<32>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<33>
impl Sub<ConstDecimals<2>> for ConstDecimals<33>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<34>
impl Sub<ConstDecimals<2>> for ConstDecimals<34>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<35>
impl Sub<ConstDecimals<2>> for ConstDecimals<35>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<36>
impl Sub<ConstDecimals<2>> for ConstDecimals<36>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<37>
impl Sub<ConstDecimals<2>> for ConstDecimals<37>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<38>
impl Sub<ConstDecimals<2>> for ConstDecimals<38>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<39>
impl Sub<ConstDecimals<2>> for ConstDecimals<39>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<40>
impl Sub<ConstDecimals<2>> for ConstDecimals<40>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<41>
impl Sub<ConstDecimals<2>> for ConstDecimals<41>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<42>
impl Sub<ConstDecimals<2>> for ConstDecimals<42>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<43>
impl Sub<ConstDecimals<2>> for ConstDecimals<43>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<44>
impl Sub<ConstDecimals<2>> for ConstDecimals<44>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<45>
impl Sub<ConstDecimals<2>> for ConstDecimals<45>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<46>
impl Sub<ConstDecimals<2>> for ConstDecimals<46>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<47>
impl Sub<ConstDecimals<2>> for ConstDecimals<47>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<48>
impl Sub<ConstDecimals<2>> for ConstDecimals<48>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<49>
impl Sub<ConstDecimals<2>> for ConstDecimals<49>
type Output = ConstDecimals<47>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<50>
impl Sub<ConstDecimals<2>> for ConstDecimals<50>
type Output = ConstDecimals<48>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<51>
impl Sub<ConstDecimals<2>> for ConstDecimals<51>
type Output = ConstDecimals<49>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<52>
impl Sub<ConstDecimals<2>> for ConstDecimals<52>
type Output = ConstDecimals<50>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<53>
impl Sub<ConstDecimals<2>> for ConstDecimals<53>
type Output = ConstDecimals<51>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<54>
impl Sub<ConstDecimals<2>> for ConstDecimals<54>
type Output = ConstDecimals<52>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<55>
impl Sub<ConstDecimals<2>> for ConstDecimals<55>
type Output = ConstDecimals<53>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<56>
impl Sub<ConstDecimals<2>> for ConstDecimals<56>
type Output = ConstDecimals<54>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<57>
impl Sub<ConstDecimals<2>> for ConstDecimals<57>
type Output = ConstDecimals<55>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<58>
impl Sub<ConstDecimals<2>> for ConstDecimals<58>
type Output = ConstDecimals<56>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<59>
impl Sub<ConstDecimals<2>> for ConstDecimals<59>
type Output = ConstDecimals<57>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<60>
impl Sub<ConstDecimals<2>> for ConstDecimals<60>
type Output = ConstDecimals<58>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<61>
impl Sub<ConstDecimals<2>> for ConstDecimals<61>
type Output = ConstDecimals<59>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<62>
impl Sub<ConstDecimals<2>> for ConstDecimals<62>
type Output = ConstDecimals<60>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<63>
impl Sub<ConstDecimals<2>> for ConstDecimals<63>
type Output = ConstDecimals<61>
Source§impl Sub<ConstDecimals<2>> for ConstDecimals<64>
impl Sub<ConstDecimals<2>> for ConstDecimals<64>
type Output = ConstDecimals<62>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<0>
impl Sub<ConstDecimals<3>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<1>
impl Sub<ConstDecimals<3>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<2>
impl Sub<ConstDecimals<3>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<4>
impl Sub<ConstDecimals<3>> for ConstDecimals<4>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<5>
impl Sub<ConstDecimals<3>> for ConstDecimals<5>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<6>
impl Sub<ConstDecimals<3>> for ConstDecimals<6>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<7>
impl Sub<ConstDecimals<3>> for ConstDecimals<7>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<8>
impl Sub<ConstDecimals<3>> for ConstDecimals<8>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<9>
impl Sub<ConstDecimals<3>> for ConstDecimals<9>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<10>
impl Sub<ConstDecimals<3>> for ConstDecimals<10>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<11>
impl Sub<ConstDecimals<3>> for ConstDecimals<11>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<12>
impl Sub<ConstDecimals<3>> for ConstDecimals<12>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<13>
impl Sub<ConstDecimals<3>> for ConstDecimals<13>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<14>
impl Sub<ConstDecimals<3>> for ConstDecimals<14>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<15>
impl Sub<ConstDecimals<3>> for ConstDecimals<15>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<16>
impl Sub<ConstDecimals<3>> for ConstDecimals<16>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<17>
impl Sub<ConstDecimals<3>> for ConstDecimals<17>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<18>
impl Sub<ConstDecimals<3>> for ConstDecimals<18>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<19>
impl Sub<ConstDecimals<3>> for ConstDecimals<19>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<20>
impl Sub<ConstDecimals<3>> for ConstDecimals<20>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<21>
impl Sub<ConstDecimals<3>> for ConstDecimals<21>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<22>
impl Sub<ConstDecimals<3>> for ConstDecimals<22>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<23>
impl Sub<ConstDecimals<3>> for ConstDecimals<23>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<24>
impl Sub<ConstDecimals<3>> for ConstDecimals<24>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<25>
impl Sub<ConstDecimals<3>> for ConstDecimals<25>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<26>
impl Sub<ConstDecimals<3>> for ConstDecimals<26>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<27>
impl Sub<ConstDecimals<3>> for ConstDecimals<27>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<28>
impl Sub<ConstDecimals<3>> for ConstDecimals<28>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<29>
impl Sub<ConstDecimals<3>> for ConstDecimals<29>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<30>
impl Sub<ConstDecimals<3>> for ConstDecimals<30>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<31>
impl Sub<ConstDecimals<3>> for ConstDecimals<31>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<32>
impl Sub<ConstDecimals<3>> for ConstDecimals<32>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<33>
impl Sub<ConstDecimals<3>> for ConstDecimals<33>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<34>
impl Sub<ConstDecimals<3>> for ConstDecimals<34>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<35>
impl Sub<ConstDecimals<3>> for ConstDecimals<35>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<36>
impl Sub<ConstDecimals<3>> for ConstDecimals<36>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<37>
impl Sub<ConstDecimals<3>> for ConstDecimals<37>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<38>
impl Sub<ConstDecimals<3>> for ConstDecimals<38>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<39>
impl Sub<ConstDecimals<3>> for ConstDecimals<39>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<40>
impl Sub<ConstDecimals<3>> for ConstDecimals<40>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<41>
impl Sub<ConstDecimals<3>> for ConstDecimals<41>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<42>
impl Sub<ConstDecimals<3>> for ConstDecimals<42>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<43>
impl Sub<ConstDecimals<3>> for ConstDecimals<43>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<44>
impl Sub<ConstDecimals<3>> for ConstDecimals<44>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<45>
impl Sub<ConstDecimals<3>> for ConstDecimals<45>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<46>
impl Sub<ConstDecimals<3>> for ConstDecimals<46>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<47>
impl Sub<ConstDecimals<3>> for ConstDecimals<47>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<48>
impl Sub<ConstDecimals<3>> for ConstDecimals<48>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<49>
impl Sub<ConstDecimals<3>> for ConstDecimals<49>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<50>
impl Sub<ConstDecimals<3>> for ConstDecimals<50>
type Output = ConstDecimals<47>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<51>
impl Sub<ConstDecimals<3>> for ConstDecimals<51>
type Output = ConstDecimals<48>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<52>
impl Sub<ConstDecimals<3>> for ConstDecimals<52>
type Output = ConstDecimals<49>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<53>
impl Sub<ConstDecimals<3>> for ConstDecimals<53>
type Output = ConstDecimals<50>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<54>
impl Sub<ConstDecimals<3>> for ConstDecimals<54>
type Output = ConstDecimals<51>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<55>
impl Sub<ConstDecimals<3>> for ConstDecimals<55>
type Output = ConstDecimals<52>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<56>
impl Sub<ConstDecimals<3>> for ConstDecimals<56>
type Output = ConstDecimals<53>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<57>
impl Sub<ConstDecimals<3>> for ConstDecimals<57>
type Output = ConstDecimals<54>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<58>
impl Sub<ConstDecimals<3>> for ConstDecimals<58>
type Output = ConstDecimals<55>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<59>
impl Sub<ConstDecimals<3>> for ConstDecimals<59>
type Output = ConstDecimals<56>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<60>
impl Sub<ConstDecimals<3>> for ConstDecimals<60>
type Output = ConstDecimals<57>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<61>
impl Sub<ConstDecimals<3>> for ConstDecimals<61>
type Output = ConstDecimals<58>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<62>
impl Sub<ConstDecimals<3>> for ConstDecimals<62>
type Output = ConstDecimals<59>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<63>
impl Sub<ConstDecimals<3>> for ConstDecimals<63>
type Output = ConstDecimals<60>
Source§impl Sub<ConstDecimals<3>> for ConstDecimals<64>
impl Sub<ConstDecimals<3>> for ConstDecimals<64>
type Output = ConstDecimals<61>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<0>
impl Sub<ConstDecimals<4>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<1>
impl Sub<ConstDecimals<4>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<2>
impl Sub<ConstDecimals<4>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<3>
impl Sub<ConstDecimals<4>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<5>
impl Sub<ConstDecimals<4>> for ConstDecimals<5>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<6>
impl Sub<ConstDecimals<4>> for ConstDecimals<6>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<7>
impl Sub<ConstDecimals<4>> for ConstDecimals<7>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<8>
impl Sub<ConstDecimals<4>> for ConstDecimals<8>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<9>
impl Sub<ConstDecimals<4>> for ConstDecimals<9>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<10>
impl Sub<ConstDecimals<4>> for ConstDecimals<10>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<11>
impl Sub<ConstDecimals<4>> for ConstDecimals<11>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<12>
impl Sub<ConstDecimals<4>> for ConstDecimals<12>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<13>
impl Sub<ConstDecimals<4>> for ConstDecimals<13>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<14>
impl Sub<ConstDecimals<4>> for ConstDecimals<14>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<15>
impl Sub<ConstDecimals<4>> for ConstDecimals<15>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<16>
impl Sub<ConstDecimals<4>> for ConstDecimals<16>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<17>
impl Sub<ConstDecimals<4>> for ConstDecimals<17>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<18>
impl Sub<ConstDecimals<4>> for ConstDecimals<18>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<19>
impl Sub<ConstDecimals<4>> for ConstDecimals<19>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<20>
impl Sub<ConstDecimals<4>> for ConstDecimals<20>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<21>
impl Sub<ConstDecimals<4>> for ConstDecimals<21>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<22>
impl Sub<ConstDecimals<4>> for ConstDecimals<22>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<23>
impl Sub<ConstDecimals<4>> for ConstDecimals<23>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<24>
impl Sub<ConstDecimals<4>> for ConstDecimals<24>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<25>
impl Sub<ConstDecimals<4>> for ConstDecimals<25>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<26>
impl Sub<ConstDecimals<4>> for ConstDecimals<26>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<27>
impl Sub<ConstDecimals<4>> for ConstDecimals<27>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<28>
impl Sub<ConstDecimals<4>> for ConstDecimals<28>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<29>
impl Sub<ConstDecimals<4>> for ConstDecimals<29>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<30>
impl Sub<ConstDecimals<4>> for ConstDecimals<30>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<31>
impl Sub<ConstDecimals<4>> for ConstDecimals<31>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<32>
impl Sub<ConstDecimals<4>> for ConstDecimals<32>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<33>
impl Sub<ConstDecimals<4>> for ConstDecimals<33>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<34>
impl Sub<ConstDecimals<4>> for ConstDecimals<34>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<35>
impl Sub<ConstDecimals<4>> for ConstDecimals<35>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<36>
impl Sub<ConstDecimals<4>> for ConstDecimals<36>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<37>
impl Sub<ConstDecimals<4>> for ConstDecimals<37>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<38>
impl Sub<ConstDecimals<4>> for ConstDecimals<38>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<39>
impl Sub<ConstDecimals<4>> for ConstDecimals<39>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<40>
impl Sub<ConstDecimals<4>> for ConstDecimals<40>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<41>
impl Sub<ConstDecimals<4>> for ConstDecimals<41>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<42>
impl Sub<ConstDecimals<4>> for ConstDecimals<42>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<43>
impl Sub<ConstDecimals<4>> for ConstDecimals<43>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<44>
impl Sub<ConstDecimals<4>> for ConstDecimals<44>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<45>
impl Sub<ConstDecimals<4>> for ConstDecimals<45>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<46>
impl Sub<ConstDecimals<4>> for ConstDecimals<46>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<47>
impl Sub<ConstDecimals<4>> for ConstDecimals<47>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<48>
impl Sub<ConstDecimals<4>> for ConstDecimals<48>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<49>
impl Sub<ConstDecimals<4>> for ConstDecimals<49>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<50>
impl Sub<ConstDecimals<4>> for ConstDecimals<50>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<51>
impl Sub<ConstDecimals<4>> for ConstDecimals<51>
type Output = ConstDecimals<47>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<52>
impl Sub<ConstDecimals<4>> for ConstDecimals<52>
type Output = ConstDecimals<48>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<53>
impl Sub<ConstDecimals<4>> for ConstDecimals<53>
type Output = ConstDecimals<49>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<54>
impl Sub<ConstDecimals<4>> for ConstDecimals<54>
type Output = ConstDecimals<50>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<55>
impl Sub<ConstDecimals<4>> for ConstDecimals<55>
type Output = ConstDecimals<51>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<56>
impl Sub<ConstDecimals<4>> for ConstDecimals<56>
type Output = ConstDecimals<52>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<57>
impl Sub<ConstDecimals<4>> for ConstDecimals<57>
type Output = ConstDecimals<53>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<58>
impl Sub<ConstDecimals<4>> for ConstDecimals<58>
type Output = ConstDecimals<54>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<59>
impl Sub<ConstDecimals<4>> for ConstDecimals<59>
type Output = ConstDecimals<55>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<60>
impl Sub<ConstDecimals<4>> for ConstDecimals<60>
type Output = ConstDecimals<56>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<61>
impl Sub<ConstDecimals<4>> for ConstDecimals<61>
type Output = ConstDecimals<57>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<62>
impl Sub<ConstDecimals<4>> for ConstDecimals<62>
type Output = ConstDecimals<58>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<63>
impl Sub<ConstDecimals<4>> for ConstDecimals<63>
type Output = ConstDecimals<59>
Source§impl Sub<ConstDecimals<4>> for ConstDecimals<64>
impl Sub<ConstDecimals<4>> for ConstDecimals<64>
type Output = ConstDecimals<60>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<0>
impl Sub<ConstDecimals<5>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<1>
impl Sub<ConstDecimals<5>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<2>
impl Sub<ConstDecimals<5>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<3>
impl Sub<ConstDecimals<5>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<4>
impl Sub<ConstDecimals<5>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<6>
impl Sub<ConstDecimals<5>> for ConstDecimals<6>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<7>
impl Sub<ConstDecimals<5>> for ConstDecimals<7>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<8>
impl Sub<ConstDecimals<5>> for ConstDecimals<8>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<9>
impl Sub<ConstDecimals<5>> for ConstDecimals<9>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<10>
impl Sub<ConstDecimals<5>> for ConstDecimals<10>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<11>
impl Sub<ConstDecimals<5>> for ConstDecimals<11>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<12>
impl Sub<ConstDecimals<5>> for ConstDecimals<12>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<13>
impl Sub<ConstDecimals<5>> for ConstDecimals<13>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<14>
impl Sub<ConstDecimals<5>> for ConstDecimals<14>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<15>
impl Sub<ConstDecimals<5>> for ConstDecimals<15>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<16>
impl Sub<ConstDecimals<5>> for ConstDecimals<16>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<17>
impl Sub<ConstDecimals<5>> for ConstDecimals<17>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<18>
impl Sub<ConstDecimals<5>> for ConstDecimals<18>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<19>
impl Sub<ConstDecimals<5>> for ConstDecimals<19>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<20>
impl Sub<ConstDecimals<5>> for ConstDecimals<20>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<21>
impl Sub<ConstDecimals<5>> for ConstDecimals<21>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<22>
impl Sub<ConstDecimals<5>> for ConstDecimals<22>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<23>
impl Sub<ConstDecimals<5>> for ConstDecimals<23>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<24>
impl Sub<ConstDecimals<5>> for ConstDecimals<24>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<25>
impl Sub<ConstDecimals<5>> for ConstDecimals<25>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<26>
impl Sub<ConstDecimals<5>> for ConstDecimals<26>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<27>
impl Sub<ConstDecimals<5>> for ConstDecimals<27>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<28>
impl Sub<ConstDecimals<5>> for ConstDecimals<28>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<29>
impl Sub<ConstDecimals<5>> for ConstDecimals<29>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<30>
impl Sub<ConstDecimals<5>> for ConstDecimals<30>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<31>
impl Sub<ConstDecimals<5>> for ConstDecimals<31>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<32>
impl Sub<ConstDecimals<5>> for ConstDecimals<32>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<33>
impl Sub<ConstDecimals<5>> for ConstDecimals<33>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<34>
impl Sub<ConstDecimals<5>> for ConstDecimals<34>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<35>
impl Sub<ConstDecimals<5>> for ConstDecimals<35>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<36>
impl Sub<ConstDecimals<5>> for ConstDecimals<36>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<37>
impl Sub<ConstDecimals<5>> for ConstDecimals<37>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<38>
impl Sub<ConstDecimals<5>> for ConstDecimals<38>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<39>
impl Sub<ConstDecimals<5>> for ConstDecimals<39>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<40>
impl Sub<ConstDecimals<5>> for ConstDecimals<40>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<41>
impl Sub<ConstDecimals<5>> for ConstDecimals<41>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<42>
impl Sub<ConstDecimals<5>> for ConstDecimals<42>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<43>
impl Sub<ConstDecimals<5>> for ConstDecimals<43>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<44>
impl Sub<ConstDecimals<5>> for ConstDecimals<44>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<45>
impl Sub<ConstDecimals<5>> for ConstDecimals<45>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<46>
impl Sub<ConstDecimals<5>> for ConstDecimals<46>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<47>
impl Sub<ConstDecimals<5>> for ConstDecimals<47>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<48>
impl Sub<ConstDecimals<5>> for ConstDecimals<48>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<49>
impl Sub<ConstDecimals<5>> for ConstDecimals<49>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<50>
impl Sub<ConstDecimals<5>> for ConstDecimals<50>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<51>
impl Sub<ConstDecimals<5>> for ConstDecimals<51>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<52>
impl Sub<ConstDecimals<5>> for ConstDecimals<52>
type Output = ConstDecimals<47>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<53>
impl Sub<ConstDecimals<5>> for ConstDecimals<53>
type Output = ConstDecimals<48>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<54>
impl Sub<ConstDecimals<5>> for ConstDecimals<54>
type Output = ConstDecimals<49>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<55>
impl Sub<ConstDecimals<5>> for ConstDecimals<55>
type Output = ConstDecimals<50>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<56>
impl Sub<ConstDecimals<5>> for ConstDecimals<56>
type Output = ConstDecimals<51>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<57>
impl Sub<ConstDecimals<5>> for ConstDecimals<57>
type Output = ConstDecimals<52>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<58>
impl Sub<ConstDecimals<5>> for ConstDecimals<58>
type Output = ConstDecimals<53>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<59>
impl Sub<ConstDecimals<5>> for ConstDecimals<59>
type Output = ConstDecimals<54>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<60>
impl Sub<ConstDecimals<5>> for ConstDecimals<60>
type Output = ConstDecimals<55>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<61>
impl Sub<ConstDecimals<5>> for ConstDecimals<61>
type Output = ConstDecimals<56>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<62>
impl Sub<ConstDecimals<5>> for ConstDecimals<62>
type Output = ConstDecimals<57>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<63>
impl Sub<ConstDecimals<5>> for ConstDecimals<63>
type Output = ConstDecimals<58>
Source§impl Sub<ConstDecimals<5>> for ConstDecimals<64>
impl Sub<ConstDecimals<5>> for ConstDecimals<64>
type Output = ConstDecimals<59>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<0>
impl Sub<ConstDecimals<6>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<1>
impl Sub<ConstDecimals<6>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<2>
impl Sub<ConstDecimals<6>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<3>
impl Sub<ConstDecimals<6>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<4>
impl Sub<ConstDecimals<6>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<5>
impl Sub<ConstDecimals<6>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<7>
impl Sub<ConstDecimals<6>> for ConstDecimals<7>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<8>
impl Sub<ConstDecimals<6>> for ConstDecimals<8>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<9>
impl Sub<ConstDecimals<6>> for ConstDecimals<9>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<10>
impl Sub<ConstDecimals<6>> for ConstDecimals<10>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<11>
impl Sub<ConstDecimals<6>> for ConstDecimals<11>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<12>
impl Sub<ConstDecimals<6>> for ConstDecimals<12>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<13>
impl Sub<ConstDecimals<6>> for ConstDecimals<13>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<14>
impl Sub<ConstDecimals<6>> for ConstDecimals<14>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<15>
impl Sub<ConstDecimals<6>> for ConstDecimals<15>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<16>
impl Sub<ConstDecimals<6>> for ConstDecimals<16>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<17>
impl Sub<ConstDecimals<6>> for ConstDecimals<17>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<18>
impl Sub<ConstDecimals<6>> for ConstDecimals<18>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<19>
impl Sub<ConstDecimals<6>> for ConstDecimals<19>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<20>
impl Sub<ConstDecimals<6>> for ConstDecimals<20>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<21>
impl Sub<ConstDecimals<6>> for ConstDecimals<21>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<22>
impl Sub<ConstDecimals<6>> for ConstDecimals<22>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<23>
impl Sub<ConstDecimals<6>> for ConstDecimals<23>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<24>
impl Sub<ConstDecimals<6>> for ConstDecimals<24>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<25>
impl Sub<ConstDecimals<6>> for ConstDecimals<25>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<26>
impl Sub<ConstDecimals<6>> for ConstDecimals<26>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<27>
impl Sub<ConstDecimals<6>> for ConstDecimals<27>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<28>
impl Sub<ConstDecimals<6>> for ConstDecimals<28>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<29>
impl Sub<ConstDecimals<6>> for ConstDecimals<29>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<30>
impl Sub<ConstDecimals<6>> for ConstDecimals<30>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<31>
impl Sub<ConstDecimals<6>> for ConstDecimals<31>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<32>
impl Sub<ConstDecimals<6>> for ConstDecimals<32>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<33>
impl Sub<ConstDecimals<6>> for ConstDecimals<33>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<34>
impl Sub<ConstDecimals<6>> for ConstDecimals<34>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<35>
impl Sub<ConstDecimals<6>> for ConstDecimals<35>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<36>
impl Sub<ConstDecimals<6>> for ConstDecimals<36>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<37>
impl Sub<ConstDecimals<6>> for ConstDecimals<37>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<38>
impl Sub<ConstDecimals<6>> for ConstDecimals<38>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<39>
impl Sub<ConstDecimals<6>> for ConstDecimals<39>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<40>
impl Sub<ConstDecimals<6>> for ConstDecimals<40>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<41>
impl Sub<ConstDecimals<6>> for ConstDecimals<41>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<42>
impl Sub<ConstDecimals<6>> for ConstDecimals<42>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<43>
impl Sub<ConstDecimals<6>> for ConstDecimals<43>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<44>
impl Sub<ConstDecimals<6>> for ConstDecimals<44>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<45>
impl Sub<ConstDecimals<6>> for ConstDecimals<45>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<46>
impl Sub<ConstDecimals<6>> for ConstDecimals<46>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<47>
impl Sub<ConstDecimals<6>> for ConstDecimals<47>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<48>
impl Sub<ConstDecimals<6>> for ConstDecimals<48>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<49>
impl Sub<ConstDecimals<6>> for ConstDecimals<49>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<50>
impl Sub<ConstDecimals<6>> for ConstDecimals<50>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<51>
impl Sub<ConstDecimals<6>> for ConstDecimals<51>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<52>
impl Sub<ConstDecimals<6>> for ConstDecimals<52>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<53>
impl Sub<ConstDecimals<6>> for ConstDecimals<53>
type Output = ConstDecimals<47>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<54>
impl Sub<ConstDecimals<6>> for ConstDecimals<54>
type Output = ConstDecimals<48>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<55>
impl Sub<ConstDecimals<6>> for ConstDecimals<55>
type Output = ConstDecimals<49>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<56>
impl Sub<ConstDecimals<6>> for ConstDecimals<56>
type Output = ConstDecimals<50>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<57>
impl Sub<ConstDecimals<6>> for ConstDecimals<57>
type Output = ConstDecimals<51>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<58>
impl Sub<ConstDecimals<6>> for ConstDecimals<58>
type Output = ConstDecimals<52>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<59>
impl Sub<ConstDecimals<6>> for ConstDecimals<59>
type Output = ConstDecimals<53>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<60>
impl Sub<ConstDecimals<6>> for ConstDecimals<60>
type Output = ConstDecimals<54>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<61>
impl Sub<ConstDecimals<6>> for ConstDecimals<61>
type Output = ConstDecimals<55>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<62>
impl Sub<ConstDecimals<6>> for ConstDecimals<62>
type Output = ConstDecimals<56>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<63>
impl Sub<ConstDecimals<6>> for ConstDecimals<63>
type Output = ConstDecimals<57>
Source§impl Sub<ConstDecimals<6>> for ConstDecimals<64>
impl Sub<ConstDecimals<6>> for ConstDecimals<64>
type Output = ConstDecimals<58>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<0>
impl Sub<ConstDecimals<7>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<1>
impl Sub<ConstDecimals<7>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<2>
impl Sub<ConstDecimals<7>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<3>
impl Sub<ConstDecimals<7>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<4>
impl Sub<ConstDecimals<7>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<5>
impl Sub<ConstDecimals<7>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<6>
impl Sub<ConstDecimals<7>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<8>
impl Sub<ConstDecimals<7>> for ConstDecimals<8>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<9>
impl Sub<ConstDecimals<7>> for ConstDecimals<9>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<10>
impl Sub<ConstDecimals<7>> for ConstDecimals<10>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<11>
impl Sub<ConstDecimals<7>> for ConstDecimals<11>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<12>
impl Sub<ConstDecimals<7>> for ConstDecimals<12>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<13>
impl Sub<ConstDecimals<7>> for ConstDecimals<13>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<14>
impl Sub<ConstDecimals<7>> for ConstDecimals<14>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<15>
impl Sub<ConstDecimals<7>> for ConstDecimals<15>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<16>
impl Sub<ConstDecimals<7>> for ConstDecimals<16>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<17>
impl Sub<ConstDecimals<7>> for ConstDecimals<17>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<18>
impl Sub<ConstDecimals<7>> for ConstDecimals<18>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<19>
impl Sub<ConstDecimals<7>> for ConstDecimals<19>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<20>
impl Sub<ConstDecimals<7>> for ConstDecimals<20>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<21>
impl Sub<ConstDecimals<7>> for ConstDecimals<21>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<22>
impl Sub<ConstDecimals<7>> for ConstDecimals<22>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<23>
impl Sub<ConstDecimals<7>> for ConstDecimals<23>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<24>
impl Sub<ConstDecimals<7>> for ConstDecimals<24>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<25>
impl Sub<ConstDecimals<7>> for ConstDecimals<25>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<26>
impl Sub<ConstDecimals<7>> for ConstDecimals<26>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<27>
impl Sub<ConstDecimals<7>> for ConstDecimals<27>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<28>
impl Sub<ConstDecimals<7>> for ConstDecimals<28>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<29>
impl Sub<ConstDecimals<7>> for ConstDecimals<29>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<30>
impl Sub<ConstDecimals<7>> for ConstDecimals<30>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<31>
impl Sub<ConstDecimals<7>> for ConstDecimals<31>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<32>
impl Sub<ConstDecimals<7>> for ConstDecimals<32>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<33>
impl Sub<ConstDecimals<7>> for ConstDecimals<33>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<34>
impl Sub<ConstDecimals<7>> for ConstDecimals<34>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<35>
impl Sub<ConstDecimals<7>> for ConstDecimals<35>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<36>
impl Sub<ConstDecimals<7>> for ConstDecimals<36>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<37>
impl Sub<ConstDecimals<7>> for ConstDecimals<37>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<38>
impl Sub<ConstDecimals<7>> for ConstDecimals<38>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<39>
impl Sub<ConstDecimals<7>> for ConstDecimals<39>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<40>
impl Sub<ConstDecimals<7>> for ConstDecimals<40>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<41>
impl Sub<ConstDecimals<7>> for ConstDecimals<41>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<42>
impl Sub<ConstDecimals<7>> for ConstDecimals<42>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<43>
impl Sub<ConstDecimals<7>> for ConstDecimals<43>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<44>
impl Sub<ConstDecimals<7>> for ConstDecimals<44>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<45>
impl Sub<ConstDecimals<7>> for ConstDecimals<45>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<46>
impl Sub<ConstDecimals<7>> for ConstDecimals<46>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<47>
impl Sub<ConstDecimals<7>> for ConstDecimals<47>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<48>
impl Sub<ConstDecimals<7>> for ConstDecimals<48>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<49>
impl Sub<ConstDecimals<7>> for ConstDecimals<49>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<50>
impl Sub<ConstDecimals<7>> for ConstDecimals<50>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<51>
impl Sub<ConstDecimals<7>> for ConstDecimals<51>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<52>
impl Sub<ConstDecimals<7>> for ConstDecimals<52>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<53>
impl Sub<ConstDecimals<7>> for ConstDecimals<53>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<54>
impl Sub<ConstDecimals<7>> for ConstDecimals<54>
type Output = ConstDecimals<47>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<55>
impl Sub<ConstDecimals<7>> for ConstDecimals<55>
type Output = ConstDecimals<48>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<56>
impl Sub<ConstDecimals<7>> for ConstDecimals<56>
type Output = ConstDecimals<49>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<57>
impl Sub<ConstDecimals<7>> for ConstDecimals<57>
type Output = ConstDecimals<50>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<58>
impl Sub<ConstDecimals<7>> for ConstDecimals<58>
type Output = ConstDecimals<51>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<59>
impl Sub<ConstDecimals<7>> for ConstDecimals<59>
type Output = ConstDecimals<52>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<60>
impl Sub<ConstDecimals<7>> for ConstDecimals<60>
type Output = ConstDecimals<53>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<61>
impl Sub<ConstDecimals<7>> for ConstDecimals<61>
type Output = ConstDecimals<54>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<62>
impl Sub<ConstDecimals<7>> for ConstDecimals<62>
type Output = ConstDecimals<55>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<63>
impl Sub<ConstDecimals<7>> for ConstDecimals<63>
type Output = ConstDecimals<56>
Source§impl Sub<ConstDecimals<7>> for ConstDecimals<64>
impl Sub<ConstDecimals<7>> for ConstDecimals<64>
type Output = ConstDecimals<57>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<0>
impl Sub<ConstDecimals<8>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<1>
impl Sub<ConstDecimals<8>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<2>
impl Sub<ConstDecimals<8>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<3>
impl Sub<ConstDecimals<8>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<4>
impl Sub<ConstDecimals<8>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<5>
impl Sub<ConstDecimals<8>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<6>
impl Sub<ConstDecimals<8>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<7>
impl Sub<ConstDecimals<8>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<9>
impl Sub<ConstDecimals<8>> for ConstDecimals<9>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<10>
impl Sub<ConstDecimals<8>> for ConstDecimals<10>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<11>
impl Sub<ConstDecimals<8>> for ConstDecimals<11>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<12>
impl Sub<ConstDecimals<8>> for ConstDecimals<12>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<13>
impl Sub<ConstDecimals<8>> for ConstDecimals<13>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<14>
impl Sub<ConstDecimals<8>> for ConstDecimals<14>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<15>
impl Sub<ConstDecimals<8>> for ConstDecimals<15>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<16>
impl Sub<ConstDecimals<8>> for ConstDecimals<16>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<17>
impl Sub<ConstDecimals<8>> for ConstDecimals<17>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<18>
impl Sub<ConstDecimals<8>> for ConstDecimals<18>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<19>
impl Sub<ConstDecimals<8>> for ConstDecimals<19>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<20>
impl Sub<ConstDecimals<8>> for ConstDecimals<20>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<21>
impl Sub<ConstDecimals<8>> for ConstDecimals<21>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<22>
impl Sub<ConstDecimals<8>> for ConstDecimals<22>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<23>
impl Sub<ConstDecimals<8>> for ConstDecimals<23>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<24>
impl Sub<ConstDecimals<8>> for ConstDecimals<24>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<25>
impl Sub<ConstDecimals<8>> for ConstDecimals<25>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<26>
impl Sub<ConstDecimals<8>> for ConstDecimals<26>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<27>
impl Sub<ConstDecimals<8>> for ConstDecimals<27>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<28>
impl Sub<ConstDecimals<8>> for ConstDecimals<28>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<29>
impl Sub<ConstDecimals<8>> for ConstDecimals<29>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<30>
impl Sub<ConstDecimals<8>> for ConstDecimals<30>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<31>
impl Sub<ConstDecimals<8>> for ConstDecimals<31>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<32>
impl Sub<ConstDecimals<8>> for ConstDecimals<32>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<33>
impl Sub<ConstDecimals<8>> for ConstDecimals<33>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<34>
impl Sub<ConstDecimals<8>> for ConstDecimals<34>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<35>
impl Sub<ConstDecimals<8>> for ConstDecimals<35>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<36>
impl Sub<ConstDecimals<8>> for ConstDecimals<36>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<37>
impl Sub<ConstDecimals<8>> for ConstDecimals<37>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<38>
impl Sub<ConstDecimals<8>> for ConstDecimals<38>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<39>
impl Sub<ConstDecimals<8>> for ConstDecimals<39>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<40>
impl Sub<ConstDecimals<8>> for ConstDecimals<40>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<41>
impl Sub<ConstDecimals<8>> for ConstDecimals<41>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<42>
impl Sub<ConstDecimals<8>> for ConstDecimals<42>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<43>
impl Sub<ConstDecimals<8>> for ConstDecimals<43>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<44>
impl Sub<ConstDecimals<8>> for ConstDecimals<44>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<45>
impl Sub<ConstDecimals<8>> for ConstDecimals<45>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<46>
impl Sub<ConstDecimals<8>> for ConstDecimals<46>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<47>
impl Sub<ConstDecimals<8>> for ConstDecimals<47>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<48>
impl Sub<ConstDecimals<8>> for ConstDecimals<48>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<49>
impl Sub<ConstDecimals<8>> for ConstDecimals<49>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<50>
impl Sub<ConstDecimals<8>> for ConstDecimals<50>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<51>
impl Sub<ConstDecimals<8>> for ConstDecimals<51>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<52>
impl Sub<ConstDecimals<8>> for ConstDecimals<52>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<53>
impl Sub<ConstDecimals<8>> for ConstDecimals<53>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<54>
impl Sub<ConstDecimals<8>> for ConstDecimals<54>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<55>
impl Sub<ConstDecimals<8>> for ConstDecimals<55>
type Output = ConstDecimals<47>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<56>
impl Sub<ConstDecimals<8>> for ConstDecimals<56>
type Output = ConstDecimals<48>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<57>
impl Sub<ConstDecimals<8>> for ConstDecimals<57>
type Output = ConstDecimals<49>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<58>
impl Sub<ConstDecimals<8>> for ConstDecimals<58>
type Output = ConstDecimals<50>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<59>
impl Sub<ConstDecimals<8>> for ConstDecimals<59>
type Output = ConstDecimals<51>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<60>
impl Sub<ConstDecimals<8>> for ConstDecimals<60>
type Output = ConstDecimals<52>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<61>
impl Sub<ConstDecimals<8>> for ConstDecimals<61>
type Output = ConstDecimals<53>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<62>
impl Sub<ConstDecimals<8>> for ConstDecimals<62>
type Output = ConstDecimals<54>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<63>
impl Sub<ConstDecimals<8>> for ConstDecimals<63>
type Output = ConstDecimals<55>
Source§impl Sub<ConstDecimals<8>> for ConstDecimals<64>
impl Sub<ConstDecimals<8>> for ConstDecimals<64>
type Output = ConstDecimals<56>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<0>
impl Sub<ConstDecimals<9>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<1>
impl Sub<ConstDecimals<9>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<2>
impl Sub<ConstDecimals<9>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<3>
impl Sub<ConstDecimals<9>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<4>
impl Sub<ConstDecimals<9>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<5>
impl Sub<ConstDecimals<9>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<6>
impl Sub<ConstDecimals<9>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<7>
impl Sub<ConstDecimals<9>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<8>
impl Sub<ConstDecimals<9>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<10>
impl Sub<ConstDecimals<9>> for ConstDecimals<10>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<11>
impl Sub<ConstDecimals<9>> for ConstDecimals<11>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<12>
impl Sub<ConstDecimals<9>> for ConstDecimals<12>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<13>
impl Sub<ConstDecimals<9>> for ConstDecimals<13>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<14>
impl Sub<ConstDecimals<9>> for ConstDecimals<14>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<15>
impl Sub<ConstDecimals<9>> for ConstDecimals<15>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<16>
impl Sub<ConstDecimals<9>> for ConstDecimals<16>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<17>
impl Sub<ConstDecimals<9>> for ConstDecimals<17>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<18>
impl Sub<ConstDecimals<9>> for ConstDecimals<18>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<19>
impl Sub<ConstDecimals<9>> for ConstDecimals<19>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<20>
impl Sub<ConstDecimals<9>> for ConstDecimals<20>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<21>
impl Sub<ConstDecimals<9>> for ConstDecimals<21>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<22>
impl Sub<ConstDecimals<9>> for ConstDecimals<22>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<23>
impl Sub<ConstDecimals<9>> for ConstDecimals<23>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<24>
impl Sub<ConstDecimals<9>> for ConstDecimals<24>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<25>
impl Sub<ConstDecimals<9>> for ConstDecimals<25>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<26>
impl Sub<ConstDecimals<9>> for ConstDecimals<26>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<27>
impl Sub<ConstDecimals<9>> for ConstDecimals<27>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<28>
impl Sub<ConstDecimals<9>> for ConstDecimals<28>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<29>
impl Sub<ConstDecimals<9>> for ConstDecimals<29>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<30>
impl Sub<ConstDecimals<9>> for ConstDecimals<30>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<31>
impl Sub<ConstDecimals<9>> for ConstDecimals<31>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<32>
impl Sub<ConstDecimals<9>> for ConstDecimals<32>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<33>
impl Sub<ConstDecimals<9>> for ConstDecimals<33>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<34>
impl Sub<ConstDecimals<9>> for ConstDecimals<34>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<35>
impl Sub<ConstDecimals<9>> for ConstDecimals<35>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<36>
impl Sub<ConstDecimals<9>> for ConstDecimals<36>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<37>
impl Sub<ConstDecimals<9>> for ConstDecimals<37>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<38>
impl Sub<ConstDecimals<9>> for ConstDecimals<38>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<39>
impl Sub<ConstDecimals<9>> for ConstDecimals<39>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<40>
impl Sub<ConstDecimals<9>> for ConstDecimals<40>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<41>
impl Sub<ConstDecimals<9>> for ConstDecimals<41>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<42>
impl Sub<ConstDecimals<9>> for ConstDecimals<42>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<43>
impl Sub<ConstDecimals<9>> for ConstDecimals<43>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<44>
impl Sub<ConstDecimals<9>> for ConstDecimals<44>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<45>
impl Sub<ConstDecimals<9>> for ConstDecimals<45>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<46>
impl Sub<ConstDecimals<9>> for ConstDecimals<46>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<47>
impl Sub<ConstDecimals<9>> for ConstDecimals<47>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<48>
impl Sub<ConstDecimals<9>> for ConstDecimals<48>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<49>
impl Sub<ConstDecimals<9>> for ConstDecimals<49>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<50>
impl Sub<ConstDecimals<9>> for ConstDecimals<50>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<51>
impl Sub<ConstDecimals<9>> for ConstDecimals<51>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<52>
impl Sub<ConstDecimals<9>> for ConstDecimals<52>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<53>
impl Sub<ConstDecimals<9>> for ConstDecimals<53>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<54>
impl Sub<ConstDecimals<9>> for ConstDecimals<54>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<55>
impl Sub<ConstDecimals<9>> for ConstDecimals<55>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<56>
impl Sub<ConstDecimals<9>> for ConstDecimals<56>
type Output = ConstDecimals<47>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<57>
impl Sub<ConstDecimals<9>> for ConstDecimals<57>
type Output = ConstDecimals<48>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<58>
impl Sub<ConstDecimals<9>> for ConstDecimals<58>
type Output = ConstDecimals<49>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<59>
impl Sub<ConstDecimals<9>> for ConstDecimals<59>
type Output = ConstDecimals<50>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<60>
impl Sub<ConstDecimals<9>> for ConstDecimals<60>
type Output = ConstDecimals<51>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<61>
impl Sub<ConstDecimals<9>> for ConstDecimals<61>
type Output = ConstDecimals<52>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<62>
impl Sub<ConstDecimals<9>> for ConstDecimals<62>
type Output = ConstDecimals<53>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<63>
impl Sub<ConstDecimals<9>> for ConstDecimals<63>
type Output = ConstDecimals<54>
Source§impl Sub<ConstDecimals<9>> for ConstDecimals<64>
impl Sub<ConstDecimals<9>> for ConstDecimals<64>
type Output = ConstDecimals<55>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<0>
impl Sub<ConstDecimals<10>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<1>
impl Sub<ConstDecimals<10>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<2>
impl Sub<ConstDecimals<10>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<3>
impl Sub<ConstDecimals<10>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<4>
impl Sub<ConstDecimals<10>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<5>
impl Sub<ConstDecimals<10>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<6>
impl Sub<ConstDecimals<10>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<7>
impl Sub<ConstDecimals<10>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<8>
impl Sub<ConstDecimals<10>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<9>
impl Sub<ConstDecimals<10>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<11>
impl Sub<ConstDecimals<10>> for ConstDecimals<11>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<12>
impl Sub<ConstDecimals<10>> for ConstDecimals<12>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<13>
impl Sub<ConstDecimals<10>> for ConstDecimals<13>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<14>
impl Sub<ConstDecimals<10>> for ConstDecimals<14>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<15>
impl Sub<ConstDecimals<10>> for ConstDecimals<15>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<16>
impl Sub<ConstDecimals<10>> for ConstDecimals<16>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<17>
impl Sub<ConstDecimals<10>> for ConstDecimals<17>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<18>
impl Sub<ConstDecimals<10>> for ConstDecimals<18>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<19>
impl Sub<ConstDecimals<10>> for ConstDecimals<19>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<20>
impl Sub<ConstDecimals<10>> for ConstDecimals<20>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<21>
impl Sub<ConstDecimals<10>> for ConstDecimals<21>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<22>
impl Sub<ConstDecimals<10>> for ConstDecimals<22>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<23>
impl Sub<ConstDecimals<10>> for ConstDecimals<23>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<24>
impl Sub<ConstDecimals<10>> for ConstDecimals<24>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<25>
impl Sub<ConstDecimals<10>> for ConstDecimals<25>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<26>
impl Sub<ConstDecimals<10>> for ConstDecimals<26>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<27>
impl Sub<ConstDecimals<10>> for ConstDecimals<27>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<28>
impl Sub<ConstDecimals<10>> for ConstDecimals<28>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<29>
impl Sub<ConstDecimals<10>> for ConstDecimals<29>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<30>
impl Sub<ConstDecimals<10>> for ConstDecimals<30>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<31>
impl Sub<ConstDecimals<10>> for ConstDecimals<31>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<32>
impl Sub<ConstDecimals<10>> for ConstDecimals<32>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<33>
impl Sub<ConstDecimals<10>> for ConstDecimals<33>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<34>
impl Sub<ConstDecimals<10>> for ConstDecimals<34>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<35>
impl Sub<ConstDecimals<10>> for ConstDecimals<35>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<36>
impl Sub<ConstDecimals<10>> for ConstDecimals<36>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<37>
impl Sub<ConstDecimals<10>> for ConstDecimals<37>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<38>
impl Sub<ConstDecimals<10>> for ConstDecimals<38>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<39>
impl Sub<ConstDecimals<10>> for ConstDecimals<39>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<40>
impl Sub<ConstDecimals<10>> for ConstDecimals<40>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<41>
impl Sub<ConstDecimals<10>> for ConstDecimals<41>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<42>
impl Sub<ConstDecimals<10>> for ConstDecimals<42>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<43>
impl Sub<ConstDecimals<10>> for ConstDecimals<43>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<44>
impl Sub<ConstDecimals<10>> for ConstDecimals<44>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<45>
impl Sub<ConstDecimals<10>> for ConstDecimals<45>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<46>
impl Sub<ConstDecimals<10>> for ConstDecimals<46>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<47>
impl Sub<ConstDecimals<10>> for ConstDecimals<47>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<48>
impl Sub<ConstDecimals<10>> for ConstDecimals<48>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<49>
impl Sub<ConstDecimals<10>> for ConstDecimals<49>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<50>
impl Sub<ConstDecimals<10>> for ConstDecimals<50>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<51>
impl Sub<ConstDecimals<10>> for ConstDecimals<51>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<52>
impl Sub<ConstDecimals<10>> for ConstDecimals<52>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<53>
impl Sub<ConstDecimals<10>> for ConstDecimals<53>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<54>
impl Sub<ConstDecimals<10>> for ConstDecimals<54>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<55>
impl Sub<ConstDecimals<10>> for ConstDecimals<55>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<56>
impl Sub<ConstDecimals<10>> for ConstDecimals<56>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<57>
impl Sub<ConstDecimals<10>> for ConstDecimals<57>
type Output = ConstDecimals<47>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<58>
impl Sub<ConstDecimals<10>> for ConstDecimals<58>
type Output = ConstDecimals<48>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<59>
impl Sub<ConstDecimals<10>> for ConstDecimals<59>
type Output = ConstDecimals<49>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<60>
impl Sub<ConstDecimals<10>> for ConstDecimals<60>
type Output = ConstDecimals<50>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<61>
impl Sub<ConstDecimals<10>> for ConstDecimals<61>
type Output = ConstDecimals<51>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<62>
impl Sub<ConstDecimals<10>> for ConstDecimals<62>
type Output = ConstDecimals<52>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<63>
impl Sub<ConstDecimals<10>> for ConstDecimals<63>
type Output = ConstDecimals<53>
Source§impl Sub<ConstDecimals<10>> for ConstDecimals<64>
impl Sub<ConstDecimals<10>> for ConstDecimals<64>
type Output = ConstDecimals<54>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<0>
impl Sub<ConstDecimals<11>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<1>
impl Sub<ConstDecimals<11>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<2>
impl Sub<ConstDecimals<11>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<3>
impl Sub<ConstDecimals<11>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<4>
impl Sub<ConstDecimals<11>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<5>
impl Sub<ConstDecimals<11>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<6>
impl Sub<ConstDecimals<11>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<7>
impl Sub<ConstDecimals<11>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<8>
impl Sub<ConstDecimals<11>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<9>
impl Sub<ConstDecimals<11>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<10>
impl Sub<ConstDecimals<11>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<12>
impl Sub<ConstDecimals<11>> for ConstDecimals<12>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<13>
impl Sub<ConstDecimals<11>> for ConstDecimals<13>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<14>
impl Sub<ConstDecimals<11>> for ConstDecimals<14>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<15>
impl Sub<ConstDecimals<11>> for ConstDecimals<15>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<16>
impl Sub<ConstDecimals<11>> for ConstDecimals<16>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<17>
impl Sub<ConstDecimals<11>> for ConstDecimals<17>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<18>
impl Sub<ConstDecimals<11>> for ConstDecimals<18>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<19>
impl Sub<ConstDecimals<11>> for ConstDecimals<19>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<20>
impl Sub<ConstDecimals<11>> for ConstDecimals<20>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<21>
impl Sub<ConstDecimals<11>> for ConstDecimals<21>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<22>
impl Sub<ConstDecimals<11>> for ConstDecimals<22>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<23>
impl Sub<ConstDecimals<11>> for ConstDecimals<23>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<24>
impl Sub<ConstDecimals<11>> for ConstDecimals<24>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<25>
impl Sub<ConstDecimals<11>> for ConstDecimals<25>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<26>
impl Sub<ConstDecimals<11>> for ConstDecimals<26>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<27>
impl Sub<ConstDecimals<11>> for ConstDecimals<27>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<28>
impl Sub<ConstDecimals<11>> for ConstDecimals<28>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<29>
impl Sub<ConstDecimals<11>> for ConstDecimals<29>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<30>
impl Sub<ConstDecimals<11>> for ConstDecimals<30>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<31>
impl Sub<ConstDecimals<11>> for ConstDecimals<31>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<32>
impl Sub<ConstDecimals<11>> for ConstDecimals<32>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<33>
impl Sub<ConstDecimals<11>> for ConstDecimals<33>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<34>
impl Sub<ConstDecimals<11>> for ConstDecimals<34>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<35>
impl Sub<ConstDecimals<11>> for ConstDecimals<35>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<36>
impl Sub<ConstDecimals<11>> for ConstDecimals<36>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<37>
impl Sub<ConstDecimals<11>> for ConstDecimals<37>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<38>
impl Sub<ConstDecimals<11>> for ConstDecimals<38>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<39>
impl Sub<ConstDecimals<11>> for ConstDecimals<39>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<40>
impl Sub<ConstDecimals<11>> for ConstDecimals<40>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<41>
impl Sub<ConstDecimals<11>> for ConstDecimals<41>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<42>
impl Sub<ConstDecimals<11>> for ConstDecimals<42>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<43>
impl Sub<ConstDecimals<11>> for ConstDecimals<43>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<44>
impl Sub<ConstDecimals<11>> for ConstDecimals<44>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<45>
impl Sub<ConstDecimals<11>> for ConstDecimals<45>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<46>
impl Sub<ConstDecimals<11>> for ConstDecimals<46>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<47>
impl Sub<ConstDecimals<11>> for ConstDecimals<47>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<48>
impl Sub<ConstDecimals<11>> for ConstDecimals<48>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<49>
impl Sub<ConstDecimals<11>> for ConstDecimals<49>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<50>
impl Sub<ConstDecimals<11>> for ConstDecimals<50>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<51>
impl Sub<ConstDecimals<11>> for ConstDecimals<51>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<52>
impl Sub<ConstDecimals<11>> for ConstDecimals<52>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<53>
impl Sub<ConstDecimals<11>> for ConstDecimals<53>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<54>
impl Sub<ConstDecimals<11>> for ConstDecimals<54>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<55>
impl Sub<ConstDecimals<11>> for ConstDecimals<55>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<56>
impl Sub<ConstDecimals<11>> for ConstDecimals<56>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<57>
impl Sub<ConstDecimals<11>> for ConstDecimals<57>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<58>
impl Sub<ConstDecimals<11>> for ConstDecimals<58>
type Output = ConstDecimals<47>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<59>
impl Sub<ConstDecimals<11>> for ConstDecimals<59>
type Output = ConstDecimals<48>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<60>
impl Sub<ConstDecimals<11>> for ConstDecimals<60>
type Output = ConstDecimals<49>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<61>
impl Sub<ConstDecimals<11>> for ConstDecimals<61>
type Output = ConstDecimals<50>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<62>
impl Sub<ConstDecimals<11>> for ConstDecimals<62>
type Output = ConstDecimals<51>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<63>
impl Sub<ConstDecimals<11>> for ConstDecimals<63>
type Output = ConstDecimals<52>
Source§impl Sub<ConstDecimals<11>> for ConstDecimals<64>
impl Sub<ConstDecimals<11>> for ConstDecimals<64>
type Output = ConstDecimals<53>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<0>
impl Sub<ConstDecimals<12>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<1>
impl Sub<ConstDecimals<12>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<2>
impl Sub<ConstDecimals<12>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<3>
impl Sub<ConstDecimals<12>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<4>
impl Sub<ConstDecimals<12>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<5>
impl Sub<ConstDecimals<12>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<6>
impl Sub<ConstDecimals<12>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<7>
impl Sub<ConstDecimals<12>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<8>
impl Sub<ConstDecimals<12>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<9>
impl Sub<ConstDecimals<12>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<10>
impl Sub<ConstDecimals<12>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<11>
impl Sub<ConstDecimals<12>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<13>
impl Sub<ConstDecimals<12>> for ConstDecimals<13>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<14>
impl Sub<ConstDecimals<12>> for ConstDecimals<14>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<15>
impl Sub<ConstDecimals<12>> for ConstDecimals<15>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<16>
impl Sub<ConstDecimals<12>> for ConstDecimals<16>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<17>
impl Sub<ConstDecimals<12>> for ConstDecimals<17>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<18>
impl Sub<ConstDecimals<12>> for ConstDecimals<18>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<19>
impl Sub<ConstDecimals<12>> for ConstDecimals<19>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<20>
impl Sub<ConstDecimals<12>> for ConstDecimals<20>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<21>
impl Sub<ConstDecimals<12>> for ConstDecimals<21>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<22>
impl Sub<ConstDecimals<12>> for ConstDecimals<22>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<23>
impl Sub<ConstDecimals<12>> for ConstDecimals<23>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<24>
impl Sub<ConstDecimals<12>> for ConstDecimals<24>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<25>
impl Sub<ConstDecimals<12>> for ConstDecimals<25>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<26>
impl Sub<ConstDecimals<12>> for ConstDecimals<26>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<27>
impl Sub<ConstDecimals<12>> for ConstDecimals<27>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<28>
impl Sub<ConstDecimals<12>> for ConstDecimals<28>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<29>
impl Sub<ConstDecimals<12>> for ConstDecimals<29>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<30>
impl Sub<ConstDecimals<12>> for ConstDecimals<30>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<31>
impl Sub<ConstDecimals<12>> for ConstDecimals<31>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<32>
impl Sub<ConstDecimals<12>> for ConstDecimals<32>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<33>
impl Sub<ConstDecimals<12>> for ConstDecimals<33>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<34>
impl Sub<ConstDecimals<12>> for ConstDecimals<34>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<35>
impl Sub<ConstDecimals<12>> for ConstDecimals<35>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<36>
impl Sub<ConstDecimals<12>> for ConstDecimals<36>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<37>
impl Sub<ConstDecimals<12>> for ConstDecimals<37>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<38>
impl Sub<ConstDecimals<12>> for ConstDecimals<38>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<39>
impl Sub<ConstDecimals<12>> for ConstDecimals<39>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<40>
impl Sub<ConstDecimals<12>> for ConstDecimals<40>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<41>
impl Sub<ConstDecimals<12>> for ConstDecimals<41>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<42>
impl Sub<ConstDecimals<12>> for ConstDecimals<42>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<43>
impl Sub<ConstDecimals<12>> for ConstDecimals<43>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<44>
impl Sub<ConstDecimals<12>> for ConstDecimals<44>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<45>
impl Sub<ConstDecimals<12>> for ConstDecimals<45>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<46>
impl Sub<ConstDecimals<12>> for ConstDecimals<46>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<47>
impl Sub<ConstDecimals<12>> for ConstDecimals<47>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<48>
impl Sub<ConstDecimals<12>> for ConstDecimals<48>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<49>
impl Sub<ConstDecimals<12>> for ConstDecimals<49>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<50>
impl Sub<ConstDecimals<12>> for ConstDecimals<50>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<51>
impl Sub<ConstDecimals<12>> for ConstDecimals<51>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<52>
impl Sub<ConstDecimals<12>> for ConstDecimals<52>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<53>
impl Sub<ConstDecimals<12>> for ConstDecimals<53>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<54>
impl Sub<ConstDecimals<12>> for ConstDecimals<54>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<55>
impl Sub<ConstDecimals<12>> for ConstDecimals<55>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<56>
impl Sub<ConstDecimals<12>> for ConstDecimals<56>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<57>
impl Sub<ConstDecimals<12>> for ConstDecimals<57>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<58>
impl Sub<ConstDecimals<12>> for ConstDecimals<58>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<59>
impl Sub<ConstDecimals<12>> for ConstDecimals<59>
type Output = ConstDecimals<47>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<60>
impl Sub<ConstDecimals<12>> for ConstDecimals<60>
type Output = ConstDecimals<48>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<61>
impl Sub<ConstDecimals<12>> for ConstDecimals<61>
type Output = ConstDecimals<49>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<62>
impl Sub<ConstDecimals<12>> for ConstDecimals<62>
type Output = ConstDecimals<50>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<63>
impl Sub<ConstDecimals<12>> for ConstDecimals<63>
type Output = ConstDecimals<51>
Source§impl Sub<ConstDecimals<12>> for ConstDecimals<64>
impl Sub<ConstDecimals<12>> for ConstDecimals<64>
type Output = ConstDecimals<52>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<0>
impl Sub<ConstDecimals<13>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<1>
impl Sub<ConstDecimals<13>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<2>
impl Sub<ConstDecimals<13>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<3>
impl Sub<ConstDecimals<13>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<4>
impl Sub<ConstDecimals<13>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<5>
impl Sub<ConstDecimals<13>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<6>
impl Sub<ConstDecimals<13>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<7>
impl Sub<ConstDecimals<13>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<8>
impl Sub<ConstDecimals<13>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<9>
impl Sub<ConstDecimals<13>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<10>
impl Sub<ConstDecimals<13>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<11>
impl Sub<ConstDecimals<13>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<12>
impl Sub<ConstDecimals<13>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<14>
impl Sub<ConstDecimals<13>> for ConstDecimals<14>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<15>
impl Sub<ConstDecimals<13>> for ConstDecimals<15>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<16>
impl Sub<ConstDecimals<13>> for ConstDecimals<16>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<17>
impl Sub<ConstDecimals<13>> for ConstDecimals<17>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<18>
impl Sub<ConstDecimals<13>> for ConstDecimals<18>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<19>
impl Sub<ConstDecimals<13>> for ConstDecimals<19>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<20>
impl Sub<ConstDecimals<13>> for ConstDecimals<20>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<21>
impl Sub<ConstDecimals<13>> for ConstDecimals<21>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<22>
impl Sub<ConstDecimals<13>> for ConstDecimals<22>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<23>
impl Sub<ConstDecimals<13>> for ConstDecimals<23>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<24>
impl Sub<ConstDecimals<13>> for ConstDecimals<24>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<25>
impl Sub<ConstDecimals<13>> for ConstDecimals<25>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<26>
impl Sub<ConstDecimals<13>> for ConstDecimals<26>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<27>
impl Sub<ConstDecimals<13>> for ConstDecimals<27>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<28>
impl Sub<ConstDecimals<13>> for ConstDecimals<28>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<29>
impl Sub<ConstDecimals<13>> for ConstDecimals<29>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<30>
impl Sub<ConstDecimals<13>> for ConstDecimals<30>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<31>
impl Sub<ConstDecimals<13>> for ConstDecimals<31>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<32>
impl Sub<ConstDecimals<13>> for ConstDecimals<32>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<33>
impl Sub<ConstDecimals<13>> for ConstDecimals<33>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<34>
impl Sub<ConstDecimals<13>> for ConstDecimals<34>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<35>
impl Sub<ConstDecimals<13>> for ConstDecimals<35>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<36>
impl Sub<ConstDecimals<13>> for ConstDecimals<36>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<37>
impl Sub<ConstDecimals<13>> for ConstDecimals<37>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<38>
impl Sub<ConstDecimals<13>> for ConstDecimals<38>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<39>
impl Sub<ConstDecimals<13>> for ConstDecimals<39>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<40>
impl Sub<ConstDecimals<13>> for ConstDecimals<40>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<41>
impl Sub<ConstDecimals<13>> for ConstDecimals<41>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<42>
impl Sub<ConstDecimals<13>> for ConstDecimals<42>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<43>
impl Sub<ConstDecimals<13>> for ConstDecimals<43>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<44>
impl Sub<ConstDecimals<13>> for ConstDecimals<44>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<45>
impl Sub<ConstDecimals<13>> for ConstDecimals<45>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<46>
impl Sub<ConstDecimals<13>> for ConstDecimals<46>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<47>
impl Sub<ConstDecimals<13>> for ConstDecimals<47>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<48>
impl Sub<ConstDecimals<13>> for ConstDecimals<48>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<49>
impl Sub<ConstDecimals<13>> for ConstDecimals<49>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<50>
impl Sub<ConstDecimals<13>> for ConstDecimals<50>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<51>
impl Sub<ConstDecimals<13>> for ConstDecimals<51>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<52>
impl Sub<ConstDecimals<13>> for ConstDecimals<52>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<53>
impl Sub<ConstDecimals<13>> for ConstDecimals<53>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<54>
impl Sub<ConstDecimals<13>> for ConstDecimals<54>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<55>
impl Sub<ConstDecimals<13>> for ConstDecimals<55>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<56>
impl Sub<ConstDecimals<13>> for ConstDecimals<56>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<57>
impl Sub<ConstDecimals<13>> for ConstDecimals<57>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<58>
impl Sub<ConstDecimals<13>> for ConstDecimals<58>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<59>
impl Sub<ConstDecimals<13>> for ConstDecimals<59>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<60>
impl Sub<ConstDecimals<13>> for ConstDecimals<60>
type Output = ConstDecimals<47>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<61>
impl Sub<ConstDecimals<13>> for ConstDecimals<61>
type Output = ConstDecimals<48>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<62>
impl Sub<ConstDecimals<13>> for ConstDecimals<62>
type Output = ConstDecimals<49>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<63>
impl Sub<ConstDecimals<13>> for ConstDecimals<63>
type Output = ConstDecimals<50>
Source§impl Sub<ConstDecimals<13>> for ConstDecimals<64>
impl Sub<ConstDecimals<13>> for ConstDecimals<64>
type Output = ConstDecimals<51>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<0>
impl Sub<ConstDecimals<14>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<1>
impl Sub<ConstDecimals<14>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<2>
impl Sub<ConstDecimals<14>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<3>
impl Sub<ConstDecimals<14>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<4>
impl Sub<ConstDecimals<14>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<5>
impl Sub<ConstDecimals<14>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<6>
impl Sub<ConstDecimals<14>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<7>
impl Sub<ConstDecimals<14>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<8>
impl Sub<ConstDecimals<14>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<9>
impl Sub<ConstDecimals<14>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<10>
impl Sub<ConstDecimals<14>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<11>
impl Sub<ConstDecimals<14>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<12>
impl Sub<ConstDecimals<14>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<13>
impl Sub<ConstDecimals<14>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<15>
impl Sub<ConstDecimals<14>> for ConstDecimals<15>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<16>
impl Sub<ConstDecimals<14>> for ConstDecimals<16>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<17>
impl Sub<ConstDecimals<14>> for ConstDecimals<17>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<18>
impl Sub<ConstDecimals<14>> for ConstDecimals<18>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<19>
impl Sub<ConstDecimals<14>> for ConstDecimals<19>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<20>
impl Sub<ConstDecimals<14>> for ConstDecimals<20>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<21>
impl Sub<ConstDecimals<14>> for ConstDecimals<21>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<22>
impl Sub<ConstDecimals<14>> for ConstDecimals<22>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<23>
impl Sub<ConstDecimals<14>> for ConstDecimals<23>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<24>
impl Sub<ConstDecimals<14>> for ConstDecimals<24>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<25>
impl Sub<ConstDecimals<14>> for ConstDecimals<25>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<26>
impl Sub<ConstDecimals<14>> for ConstDecimals<26>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<27>
impl Sub<ConstDecimals<14>> for ConstDecimals<27>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<28>
impl Sub<ConstDecimals<14>> for ConstDecimals<28>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<29>
impl Sub<ConstDecimals<14>> for ConstDecimals<29>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<30>
impl Sub<ConstDecimals<14>> for ConstDecimals<30>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<31>
impl Sub<ConstDecimals<14>> for ConstDecimals<31>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<32>
impl Sub<ConstDecimals<14>> for ConstDecimals<32>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<33>
impl Sub<ConstDecimals<14>> for ConstDecimals<33>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<34>
impl Sub<ConstDecimals<14>> for ConstDecimals<34>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<35>
impl Sub<ConstDecimals<14>> for ConstDecimals<35>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<36>
impl Sub<ConstDecimals<14>> for ConstDecimals<36>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<37>
impl Sub<ConstDecimals<14>> for ConstDecimals<37>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<38>
impl Sub<ConstDecimals<14>> for ConstDecimals<38>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<39>
impl Sub<ConstDecimals<14>> for ConstDecimals<39>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<40>
impl Sub<ConstDecimals<14>> for ConstDecimals<40>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<41>
impl Sub<ConstDecimals<14>> for ConstDecimals<41>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<42>
impl Sub<ConstDecimals<14>> for ConstDecimals<42>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<43>
impl Sub<ConstDecimals<14>> for ConstDecimals<43>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<44>
impl Sub<ConstDecimals<14>> for ConstDecimals<44>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<45>
impl Sub<ConstDecimals<14>> for ConstDecimals<45>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<46>
impl Sub<ConstDecimals<14>> for ConstDecimals<46>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<47>
impl Sub<ConstDecimals<14>> for ConstDecimals<47>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<48>
impl Sub<ConstDecimals<14>> for ConstDecimals<48>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<49>
impl Sub<ConstDecimals<14>> for ConstDecimals<49>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<50>
impl Sub<ConstDecimals<14>> for ConstDecimals<50>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<51>
impl Sub<ConstDecimals<14>> for ConstDecimals<51>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<52>
impl Sub<ConstDecimals<14>> for ConstDecimals<52>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<53>
impl Sub<ConstDecimals<14>> for ConstDecimals<53>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<54>
impl Sub<ConstDecimals<14>> for ConstDecimals<54>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<55>
impl Sub<ConstDecimals<14>> for ConstDecimals<55>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<56>
impl Sub<ConstDecimals<14>> for ConstDecimals<56>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<57>
impl Sub<ConstDecimals<14>> for ConstDecimals<57>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<58>
impl Sub<ConstDecimals<14>> for ConstDecimals<58>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<59>
impl Sub<ConstDecimals<14>> for ConstDecimals<59>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<60>
impl Sub<ConstDecimals<14>> for ConstDecimals<60>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<61>
impl Sub<ConstDecimals<14>> for ConstDecimals<61>
type Output = ConstDecimals<47>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<62>
impl Sub<ConstDecimals<14>> for ConstDecimals<62>
type Output = ConstDecimals<48>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<63>
impl Sub<ConstDecimals<14>> for ConstDecimals<63>
type Output = ConstDecimals<49>
Source§impl Sub<ConstDecimals<14>> for ConstDecimals<64>
impl Sub<ConstDecimals<14>> for ConstDecimals<64>
type Output = ConstDecimals<50>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<0>
impl Sub<ConstDecimals<15>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<1>
impl Sub<ConstDecimals<15>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<2>
impl Sub<ConstDecimals<15>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<3>
impl Sub<ConstDecimals<15>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<4>
impl Sub<ConstDecimals<15>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<5>
impl Sub<ConstDecimals<15>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<6>
impl Sub<ConstDecimals<15>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<7>
impl Sub<ConstDecimals<15>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<8>
impl Sub<ConstDecimals<15>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<9>
impl Sub<ConstDecimals<15>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<10>
impl Sub<ConstDecimals<15>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<11>
impl Sub<ConstDecimals<15>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<12>
impl Sub<ConstDecimals<15>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<13>
impl Sub<ConstDecimals<15>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<14>
impl Sub<ConstDecimals<15>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<16>
impl Sub<ConstDecimals<15>> for ConstDecimals<16>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<17>
impl Sub<ConstDecimals<15>> for ConstDecimals<17>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<18>
impl Sub<ConstDecimals<15>> for ConstDecimals<18>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<19>
impl Sub<ConstDecimals<15>> for ConstDecimals<19>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<20>
impl Sub<ConstDecimals<15>> for ConstDecimals<20>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<21>
impl Sub<ConstDecimals<15>> for ConstDecimals<21>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<22>
impl Sub<ConstDecimals<15>> for ConstDecimals<22>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<23>
impl Sub<ConstDecimals<15>> for ConstDecimals<23>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<24>
impl Sub<ConstDecimals<15>> for ConstDecimals<24>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<25>
impl Sub<ConstDecimals<15>> for ConstDecimals<25>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<26>
impl Sub<ConstDecimals<15>> for ConstDecimals<26>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<27>
impl Sub<ConstDecimals<15>> for ConstDecimals<27>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<28>
impl Sub<ConstDecimals<15>> for ConstDecimals<28>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<29>
impl Sub<ConstDecimals<15>> for ConstDecimals<29>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<30>
impl Sub<ConstDecimals<15>> for ConstDecimals<30>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<31>
impl Sub<ConstDecimals<15>> for ConstDecimals<31>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<32>
impl Sub<ConstDecimals<15>> for ConstDecimals<32>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<33>
impl Sub<ConstDecimals<15>> for ConstDecimals<33>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<34>
impl Sub<ConstDecimals<15>> for ConstDecimals<34>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<35>
impl Sub<ConstDecimals<15>> for ConstDecimals<35>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<36>
impl Sub<ConstDecimals<15>> for ConstDecimals<36>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<37>
impl Sub<ConstDecimals<15>> for ConstDecimals<37>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<38>
impl Sub<ConstDecimals<15>> for ConstDecimals<38>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<39>
impl Sub<ConstDecimals<15>> for ConstDecimals<39>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<40>
impl Sub<ConstDecimals<15>> for ConstDecimals<40>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<41>
impl Sub<ConstDecimals<15>> for ConstDecimals<41>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<42>
impl Sub<ConstDecimals<15>> for ConstDecimals<42>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<43>
impl Sub<ConstDecimals<15>> for ConstDecimals<43>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<44>
impl Sub<ConstDecimals<15>> for ConstDecimals<44>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<45>
impl Sub<ConstDecimals<15>> for ConstDecimals<45>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<46>
impl Sub<ConstDecimals<15>> for ConstDecimals<46>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<47>
impl Sub<ConstDecimals<15>> for ConstDecimals<47>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<48>
impl Sub<ConstDecimals<15>> for ConstDecimals<48>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<49>
impl Sub<ConstDecimals<15>> for ConstDecimals<49>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<50>
impl Sub<ConstDecimals<15>> for ConstDecimals<50>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<51>
impl Sub<ConstDecimals<15>> for ConstDecimals<51>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<52>
impl Sub<ConstDecimals<15>> for ConstDecimals<52>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<53>
impl Sub<ConstDecimals<15>> for ConstDecimals<53>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<54>
impl Sub<ConstDecimals<15>> for ConstDecimals<54>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<55>
impl Sub<ConstDecimals<15>> for ConstDecimals<55>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<56>
impl Sub<ConstDecimals<15>> for ConstDecimals<56>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<57>
impl Sub<ConstDecimals<15>> for ConstDecimals<57>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<58>
impl Sub<ConstDecimals<15>> for ConstDecimals<58>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<59>
impl Sub<ConstDecimals<15>> for ConstDecimals<59>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<60>
impl Sub<ConstDecimals<15>> for ConstDecimals<60>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<61>
impl Sub<ConstDecimals<15>> for ConstDecimals<61>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<62>
impl Sub<ConstDecimals<15>> for ConstDecimals<62>
type Output = ConstDecimals<47>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<63>
impl Sub<ConstDecimals<15>> for ConstDecimals<63>
type Output = ConstDecimals<48>
Source§impl Sub<ConstDecimals<15>> for ConstDecimals<64>
impl Sub<ConstDecimals<15>> for ConstDecimals<64>
type Output = ConstDecimals<49>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<0>
impl Sub<ConstDecimals<16>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<1>
impl Sub<ConstDecimals<16>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<2>
impl Sub<ConstDecimals<16>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<3>
impl Sub<ConstDecimals<16>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<4>
impl Sub<ConstDecimals<16>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<5>
impl Sub<ConstDecimals<16>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<6>
impl Sub<ConstDecimals<16>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<7>
impl Sub<ConstDecimals<16>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<8>
impl Sub<ConstDecimals<16>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<9>
impl Sub<ConstDecimals<16>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<10>
impl Sub<ConstDecimals<16>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<11>
impl Sub<ConstDecimals<16>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<12>
impl Sub<ConstDecimals<16>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<13>
impl Sub<ConstDecimals<16>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<14>
impl Sub<ConstDecimals<16>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<15>
impl Sub<ConstDecimals<16>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<17>
impl Sub<ConstDecimals<16>> for ConstDecimals<17>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<18>
impl Sub<ConstDecimals<16>> for ConstDecimals<18>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<19>
impl Sub<ConstDecimals<16>> for ConstDecimals<19>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<20>
impl Sub<ConstDecimals<16>> for ConstDecimals<20>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<21>
impl Sub<ConstDecimals<16>> for ConstDecimals<21>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<22>
impl Sub<ConstDecimals<16>> for ConstDecimals<22>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<23>
impl Sub<ConstDecimals<16>> for ConstDecimals<23>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<24>
impl Sub<ConstDecimals<16>> for ConstDecimals<24>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<25>
impl Sub<ConstDecimals<16>> for ConstDecimals<25>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<26>
impl Sub<ConstDecimals<16>> for ConstDecimals<26>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<27>
impl Sub<ConstDecimals<16>> for ConstDecimals<27>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<28>
impl Sub<ConstDecimals<16>> for ConstDecimals<28>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<29>
impl Sub<ConstDecimals<16>> for ConstDecimals<29>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<30>
impl Sub<ConstDecimals<16>> for ConstDecimals<30>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<31>
impl Sub<ConstDecimals<16>> for ConstDecimals<31>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<32>
impl Sub<ConstDecimals<16>> for ConstDecimals<32>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<33>
impl Sub<ConstDecimals<16>> for ConstDecimals<33>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<34>
impl Sub<ConstDecimals<16>> for ConstDecimals<34>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<35>
impl Sub<ConstDecimals<16>> for ConstDecimals<35>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<36>
impl Sub<ConstDecimals<16>> for ConstDecimals<36>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<37>
impl Sub<ConstDecimals<16>> for ConstDecimals<37>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<38>
impl Sub<ConstDecimals<16>> for ConstDecimals<38>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<39>
impl Sub<ConstDecimals<16>> for ConstDecimals<39>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<40>
impl Sub<ConstDecimals<16>> for ConstDecimals<40>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<41>
impl Sub<ConstDecimals<16>> for ConstDecimals<41>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<42>
impl Sub<ConstDecimals<16>> for ConstDecimals<42>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<43>
impl Sub<ConstDecimals<16>> for ConstDecimals<43>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<44>
impl Sub<ConstDecimals<16>> for ConstDecimals<44>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<45>
impl Sub<ConstDecimals<16>> for ConstDecimals<45>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<46>
impl Sub<ConstDecimals<16>> for ConstDecimals<46>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<47>
impl Sub<ConstDecimals<16>> for ConstDecimals<47>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<48>
impl Sub<ConstDecimals<16>> for ConstDecimals<48>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<49>
impl Sub<ConstDecimals<16>> for ConstDecimals<49>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<50>
impl Sub<ConstDecimals<16>> for ConstDecimals<50>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<51>
impl Sub<ConstDecimals<16>> for ConstDecimals<51>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<52>
impl Sub<ConstDecimals<16>> for ConstDecimals<52>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<53>
impl Sub<ConstDecimals<16>> for ConstDecimals<53>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<54>
impl Sub<ConstDecimals<16>> for ConstDecimals<54>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<55>
impl Sub<ConstDecimals<16>> for ConstDecimals<55>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<56>
impl Sub<ConstDecimals<16>> for ConstDecimals<56>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<57>
impl Sub<ConstDecimals<16>> for ConstDecimals<57>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<58>
impl Sub<ConstDecimals<16>> for ConstDecimals<58>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<59>
impl Sub<ConstDecimals<16>> for ConstDecimals<59>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<60>
impl Sub<ConstDecimals<16>> for ConstDecimals<60>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<61>
impl Sub<ConstDecimals<16>> for ConstDecimals<61>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<62>
impl Sub<ConstDecimals<16>> for ConstDecimals<62>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<63>
impl Sub<ConstDecimals<16>> for ConstDecimals<63>
type Output = ConstDecimals<47>
Source§impl Sub<ConstDecimals<16>> for ConstDecimals<64>
impl Sub<ConstDecimals<16>> for ConstDecimals<64>
type Output = ConstDecimals<48>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<0>
impl Sub<ConstDecimals<17>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<1>
impl Sub<ConstDecimals<17>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<2>
impl Sub<ConstDecimals<17>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<3>
impl Sub<ConstDecimals<17>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<4>
impl Sub<ConstDecimals<17>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<5>
impl Sub<ConstDecimals<17>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<6>
impl Sub<ConstDecimals<17>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<7>
impl Sub<ConstDecimals<17>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<8>
impl Sub<ConstDecimals<17>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<9>
impl Sub<ConstDecimals<17>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<10>
impl Sub<ConstDecimals<17>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<11>
impl Sub<ConstDecimals<17>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<12>
impl Sub<ConstDecimals<17>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<13>
impl Sub<ConstDecimals<17>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<14>
impl Sub<ConstDecimals<17>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<15>
impl Sub<ConstDecimals<17>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<16>
impl Sub<ConstDecimals<17>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<18>
impl Sub<ConstDecimals<17>> for ConstDecimals<18>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<19>
impl Sub<ConstDecimals<17>> for ConstDecimals<19>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<20>
impl Sub<ConstDecimals<17>> for ConstDecimals<20>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<21>
impl Sub<ConstDecimals<17>> for ConstDecimals<21>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<22>
impl Sub<ConstDecimals<17>> for ConstDecimals<22>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<23>
impl Sub<ConstDecimals<17>> for ConstDecimals<23>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<24>
impl Sub<ConstDecimals<17>> for ConstDecimals<24>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<25>
impl Sub<ConstDecimals<17>> for ConstDecimals<25>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<26>
impl Sub<ConstDecimals<17>> for ConstDecimals<26>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<27>
impl Sub<ConstDecimals<17>> for ConstDecimals<27>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<28>
impl Sub<ConstDecimals<17>> for ConstDecimals<28>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<29>
impl Sub<ConstDecimals<17>> for ConstDecimals<29>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<30>
impl Sub<ConstDecimals<17>> for ConstDecimals<30>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<31>
impl Sub<ConstDecimals<17>> for ConstDecimals<31>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<32>
impl Sub<ConstDecimals<17>> for ConstDecimals<32>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<33>
impl Sub<ConstDecimals<17>> for ConstDecimals<33>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<34>
impl Sub<ConstDecimals<17>> for ConstDecimals<34>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<35>
impl Sub<ConstDecimals<17>> for ConstDecimals<35>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<36>
impl Sub<ConstDecimals<17>> for ConstDecimals<36>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<37>
impl Sub<ConstDecimals<17>> for ConstDecimals<37>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<38>
impl Sub<ConstDecimals<17>> for ConstDecimals<38>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<39>
impl Sub<ConstDecimals<17>> for ConstDecimals<39>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<40>
impl Sub<ConstDecimals<17>> for ConstDecimals<40>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<41>
impl Sub<ConstDecimals<17>> for ConstDecimals<41>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<42>
impl Sub<ConstDecimals<17>> for ConstDecimals<42>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<43>
impl Sub<ConstDecimals<17>> for ConstDecimals<43>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<44>
impl Sub<ConstDecimals<17>> for ConstDecimals<44>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<45>
impl Sub<ConstDecimals<17>> for ConstDecimals<45>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<46>
impl Sub<ConstDecimals<17>> for ConstDecimals<46>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<47>
impl Sub<ConstDecimals<17>> for ConstDecimals<47>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<48>
impl Sub<ConstDecimals<17>> for ConstDecimals<48>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<49>
impl Sub<ConstDecimals<17>> for ConstDecimals<49>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<50>
impl Sub<ConstDecimals<17>> for ConstDecimals<50>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<51>
impl Sub<ConstDecimals<17>> for ConstDecimals<51>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<52>
impl Sub<ConstDecimals<17>> for ConstDecimals<52>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<53>
impl Sub<ConstDecimals<17>> for ConstDecimals<53>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<54>
impl Sub<ConstDecimals<17>> for ConstDecimals<54>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<55>
impl Sub<ConstDecimals<17>> for ConstDecimals<55>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<56>
impl Sub<ConstDecimals<17>> for ConstDecimals<56>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<57>
impl Sub<ConstDecimals<17>> for ConstDecimals<57>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<58>
impl Sub<ConstDecimals<17>> for ConstDecimals<58>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<59>
impl Sub<ConstDecimals<17>> for ConstDecimals<59>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<60>
impl Sub<ConstDecimals<17>> for ConstDecimals<60>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<61>
impl Sub<ConstDecimals<17>> for ConstDecimals<61>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<62>
impl Sub<ConstDecimals<17>> for ConstDecimals<62>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<63>
impl Sub<ConstDecimals<17>> for ConstDecimals<63>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<17>> for ConstDecimals<64>
impl Sub<ConstDecimals<17>> for ConstDecimals<64>
type Output = ConstDecimals<47>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<0>
impl Sub<ConstDecimals<18>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<1>
impl Sub<ConstDecimals<18>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<2>
impl Sub<ConstDecimals<18>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<3>
impl Sub<ConstDecimals<18>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<4>
impl Sub<ConstDecimals<18>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<5>
impl Sub<ConstDecimals<18>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<6>
impl Sub<ConstDecimals<18>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<7>
impl Sub<ConstDecimals<18>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<8>
impl Sub<ConstDecimals<18>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<9>
impl Sub<ConstDecimals<18>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<10>
impl Sub<ConstDecimals<18>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<11>
impl Sub<ConstDecimals<18>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<12>
impl Sub<ConstDecimals<18>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<13>
impl Sub<ConstDecimals<18>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<14>
impl Sub<ConstDecimals<18>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<15>
impl Sub<ConstDecimals<18>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<16>
impl Sub<ConstDecimals<18>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<17>
impl Sub<ConstDecimals<18>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<19>
impl Sub<ConstDecimals<18>> for ConstDecimals<19>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<20>
impl Sub<ConstDecimals<18>> for ConstDecimals<20>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<21>
impl Sub<ConstDecimals<18>> for ConstDecimals<21>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<22>
impl Sub<ConstDecimals<18>> for ConstDecimals<22>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<23>
impl Sub<ConstDecimals<18>> for ConstDecimals<23>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<24>
impl Sub<ConstDecimals<18>> for ConstDecimals<24>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<25>
impl Sub<ConstDecimals<18>> for ConstDecimals<25>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<26>
impl Sub<ConstDecimals<18>> for ConstDecimals<26>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<27>
impl Sub<ConstDecimals<18>> for ConstDecimals<27>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<28>
impl Sub<ConstDecimals<18>> for ConstDecimals<28>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<29>
impl Sub<ConstDecimals<18>> for ConstDecimals<29>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<30>
impl Sub<ConstDecimals<18>> for ConstDecimals<30>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<31>
impl Sub<ConstDecimals<18>> for ConstDecimals<31>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<32>
impl Sub<ConstDecimals<18>> for ConstDecimals<32>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<33>
impl Sub<ConstDecimals<18>> for ConstDecimals<33>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<34>
impl Sub<ConstDecimals<18>> for ConstDecimals<34>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<35>
impl Sub<ConstDecimals<18>> for ConstDecimals<35>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<36>
impl Sub<ConstDecimals<18>> for ConstDecimals<36>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<37>
impl Sub<ConstDecimals<18>> for ConstDecimals<37>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<38>
impl Sub<ConstDecimals<18>> for ConstDecimals<38>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<39>
impl Sub<ConstDecimals<18>> for ConstDecimals<39>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<40>
impl Sub<ConstDecimals<18>> for ConstDecimals<40>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<41>
impl Sub<ConstDecimals<18>> for ConstDecimals<41>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<42>
impl Sub<ConstDecimals<18>> for ConstDecimals<42>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<43>
impl Sub<ConstDecimals<18>> for ConstDecimals<43>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<44>
impl Sub<ConstDecimals<18>> for ConstDecimals<44>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<45>
impl Sub<ConstDecimals<18>> for ConstDecimals<45>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<46>
impl Sub<ConstDecimals<18>> for ConstDecimals<46>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<47>
impl Sub<ConstDecimals<18>> for ConstDecimals<47>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<48>
impl Sub<ConstDecimals<18>> for ConstDecimals<48>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<49>
impl Sub<ConstDecimals<18>> for ConstDecimals<49>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<50>
impl Sub<ConstDecimals<18>> for ConstDecimals<50>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<51>
impl Sub<ConstDecimals<18>> for ConstDecimals<51>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<52>
impl Sub<ConstDecimals<18>> for ConstDecimals<52>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<53>
impl Sub<ConstDecimals<18>> for ConstDecimals<53>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<54>
impl Sub<ConstDecimals<18>> for ConstDecimals<54>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<55>
impl Sub<ConstDecimals<18>> for ConstDecimals<55>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<56>
impl Sub<ConstDecimals<18>> for ConstDecimals<56>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<57>
impl Sub<ConstDecimals<18>> for ConstDecimals<57>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<58>
impl Sub<ConstDecimals<18>> for ConstDecimals<58>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<59>
impl Sub<ConstDecimals<18>> for ConstDecimals<59>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<60>
impl Sub<ConstDecimals<18>> for ConstDecimals<60>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<61>
impl Sub<ConstDecimals<18>> for ConstDecimals<61>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<62>
impl Sub<ConstDecimals<18>> for ConstDecimals<62>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<63>
impl Sub<ConstDecimals<18>> for ConstDecimals<63>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<18>> for ConstDecimals<64>
impl Sub<ConstDecimals<18>> for ConstDecimals<64>
type Output = ConstDecimals<46>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<0>
impl Sub<ConstDecimals<19>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<1>
impl Sub<ConstDecimals<19>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<2>
impl Sub<ConstDecimals<19>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<3>
impl Sub<ConstDecimals<19>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<4>
impl Sub<ConstDecimals<19>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<5>
impl Sub<ConstDecimals<19>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<6>
impl Sub<ConstDecimals<19>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<7>
impl Sub<ConstDecimals<19>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<8>
impl Sub<ConstDecimals<19>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<9>
impl Sub<ConstDecimals<19>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<10>
impl Sub<ConstDecimals<19>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<11>
impl Sub<ConstDecimals<19>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<12>
impl Sub<ConstDecimals<19>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<13>
impl Sub<ConstDecimals<19>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<14>
impl Sub<ConstDecimals<19>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<15>
impl Sub<ConstDecimals<19>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<16>
impl Sub<ConstDecimals<19>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<17>
impl Sub<ConstDecimals<19>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<18>
impl Sub<ConstDecimals<19>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<20>
impl Sub<ConstDecimals<19>> for ConstDecimals<20>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<21>
impl Sub<ConstDecimals<19>> for ConstDecimals<21>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<22>
impl Sub<ConstDecimals<19>> for ConstDecimals<22>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<23>
impl Sub<ConstDecimals<19>> for ConstDecimals<23>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<24>
impl Sub<ConstDecimals<19>> for ConstDecimals<24>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<25>
impl Sub<ConstDecimals<19>> for ConstDecimals<25>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<26>
impl Sub<ConstDecimals<19>> for ConstDecimals<26>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<27>
impl Sub<ConstDecimals<19>> for ConstDecimals<27>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<28>
impl Sub<ConstDecimals<19>> for ConstDecimals<28>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<29>
impl Sub<ConstDecimals<19>> for ConstDecimals<29>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<30>
impl Sub<ConstDecimals<19>> for ConstDecimals<30>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<31>
impl Sub<ConstDecimals<19>> for ConstDecimals<31>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<32>
impl Sub<ConstDecimals<19>> for ConstDecimals<32>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<33>
impl Sub<ConstDecimals<19>> for ConstDecimals<33>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<34>
impl Sub<ConstDecimals<19>> for ConstDecimals<34>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<35>
impl Sub<ConstDecimals<19>> for ConstDecimals<35>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<36>
impl Sub<ConstDecimals<19>> for ConstDecimals<36>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<37>
impl Sub<ConstDecimals<19>> for ConstDecimals<37>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<38>
impl Sub<ConstDecimals<19>> for ConstDecimals<38>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<39>
impl Sub<ConstDecimals<19>> for ConstDecimals<39>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<40>
impl Sub<ConstDecimals<19>> for ConstDecimals<40>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<41>
impl Sub<ConstDecimals<19>> for ConstDecimals<41>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<42>
impl Sub<ConstDecimals<19>> for ConstDecimals<42>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<43>
impl Sub<ConstDecimals<19>> for ConstDecimals<43>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<44>
impl Sub<ConstDecimals<19>> for ConstDecimals<44>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<45>
impl Sub<ConstDecimals<19>> for ConstDecimals<45>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<46>
impl Sub<ConstDecimals<19>> for ConstDecimals<46>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<47>
impl Sub<ConstDecimals<19>> for ConstDecimals<47>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<48>
impl Sub<ConstDecimals<19>> for ConstDecimals<48>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<49>
impl Sub<ConstDecimals<19>> for ConstDecimals<49>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<50>
impl Sub<ConstDecimals<19>> for ConstDecimals<50>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<51>
impl Sub<ConstDecimals<19>> for ConstDecimals<51>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<52>
impl Sub<ConstDecimals<19>> for ConstDecimals<52>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<53>
impl Sub<ConstDecimals<19>> for ConstDecimals<53>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<54>
impl Sub<ConstDecimals<19>> for ConstDecimals<54>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<55>
impl Sub<ConstDecimals<19>> for ConstDecimals<55>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<56>
impl Sub<ConstDecimals<19>> for ConstDecimals<56>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<57>
impl Sub<ConstDecimals<19>> for ConstDecimals<57>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<58>
impl Sub<ConstDecimals<19>> for ConstDecimals<58>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<59>
impl Sub<ConstDecimals<19>> for ConstDecimals<59>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<60>
impl Sub<ConstDecimals<19>> for ConstDecimals<60>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<61>
impl Sub<ConstDecimals<19>> for ConstDecimals<61>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<62>
impl Sub<ConstDecimals<19>> for ConstDecimals<62>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<63>
impl Sub<ConstDecimals<19>> for ConstDecimals<63>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<19>> for ConstDecimals<64>
impl Sub<ConstDecimals<19>> for ConstDecimals<64>
type Output = ConstDecimals<45>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<0>
impl Sub<ConstDecimals<20>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<1>
impl Sub<ConstDecimals<20>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<2>
impl Sub<ConstDecimals<20>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<3>
impl Sub<ConstDecimals<20>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<4>
impl Sub<ConstDecimals<20>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<5>
impl Sub<ConstDecimals<20>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<6>
impl Sub<ConstDecimals<20>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<7>
impl Sub<ConstDecimals<20>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<8>
impl Sub<ConstDecimals<20>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<9>
impl Sub<ConstDecimals<20>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<10>
impl Sub<ConstDecimals<20>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<11>
impl Sub<ConstDecimals<20>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<12>
impl Sub<ConstDecimals<20>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<13>
impl Sub<ConstDecimals<20>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<14>
impl Sub<ConstDecimals<20>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<15>
impl Sub<ConstDecimals<20>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<16>
impl Sub<ConstDecimals<20>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<17>
impl Sub<ConstDecimals<20>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<18>
impl Sub<ConstDecimals<20>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<19>
impl Sub<ConstDecimals<20>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<21>
impl Sub<ConstDecimals<20>> for ConstDecimals<21>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<22>
impl Sub<ConstDecimals<20>> for ConstDecimals<22>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<23>
impl Sub<ConstDecimals<20>> for ConstDecimals<23>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<24>
impl Sub<ConstDecimals<20>> for ConstDecimals<24>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<25>
impl Sub<ConstDecimals<20>> for ConstDecimals<25>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<26>
impl Sub<ConstDecimals<20>> for ConstDecimals<26>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<27>
impl Sub<ConstDecimals<20>> for ConstDecimals<27>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<28>
impl Sub<ConstDecimals<20>> for ConstDecimals<28>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<29>
impl Sub<ConstDecimals<20>> for ConstDecimals<29>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<30>
impl Sub<ConstDecimals<20>> for ConstDecimals<30>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<31>
impl Sub<ConstDecimals<20>> for ConstDecimals<31>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<32>
impl Sub<ConstDecimals<20>> for ConstDecimals<32>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<33>
impl Sub<ConstDecimals<20>> for ConstDecimals<33>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<34>
impl Sub<ConstDecimals<20>> for ConstDecimals<34>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<35>
impl Sub<ConstDecimals<20>> for ConstDecimals<35>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<36>
impl Sub<ConstDecimals<20>> for ConstDecimals<36>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<37>
impl Sub<ConstDecimals<20>> for ConstDecimals<37>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<38>
impl Sub<ConstDecimals<20>> for ConstDecimals<38>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<39>
impl Sub<ConstDecimals<20>> for ConstDecimals<39>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<40>
impl Sub<ConstDecimals<20>> for ConstDecimals<40>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<41>
impl Sub<ConstDecimals<20>> for ConstDecimals<41>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<42>
impl Sub<ConstDecimals<20>> for ConstDecimals<42>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<43>
impl Sub<ConstDecimals<20>> for ConstDecimals<43>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<44>
impl Sub<ConstDecimals<20>> for ConstDecimals<44>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<45>
impl Sub<ConstDecimals<20>> for ConstDecimals<45>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<46>
impl Sub<ConstDecimals<20>> for ConstDecimals<46>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<47>
impl Sub<ConstDecimals<20>> for ConstDecimals<47>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<48>
impl Sub<ConstDecimals<20>> for ConstDecimals<48>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<49>
impl Sub<ConstDecimals<20>> for ConstDecimals<49>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<50>
impl Sub<ConstDecimals<20>> for ConstDecimals<50>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<51>
impl Sub<ConstDecimals<20>> for ConstDecimals<51>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<52>
impl Sub<ConstDecimals<20>> for ConstDecimals<52>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<53>
impl Sub<ConstDecimals<20>> for ConstDecimals<53>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<54>
impl Sub<ConstDecimals<20>> for ConstDecimals<54>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<55>
impl Sub<ConstDecimals<20>> for ConstDecimals<55>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<56>
impl Sub<ConstDecimals<20>> for ConstDecimals<56>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<57>
impl Sub<ConstDecimals<20>> for ConstDecimals<57>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<58>
impl Sub<ConstDecimals<20>> for ConstDecimals<58>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<59>
impl Sub<ConstDecimals<20>> for ConstDecimals<59>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<60>
impl Sub<ConstDecimals<20>> for ConstDecimals<60>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<61>
impl Sub<ConstDecimals<20>> for ConstDecimals<61>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<62>
impl Sub<ConstDecimals<20>> for ConstDecimals<62>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<63>
impl Sub<ConstDecimals<20>> for ConstDecimals<63>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<20>> for ConstDecimals<64>
impl Sub<ConstDecimals<20>> for ConstDecimals<64>
type Output = ConstDecimals<44>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<0>
impl Sub<ConstDecimals<21>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<1>
impl Sub<ConstDecimals<21>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<2>
impl Sub<ConstDecimals<21>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<3>
impl Sub<ConstDecimals<21>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<4>
impl Sub<ConstDecimals<21>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<5>
impl Sub<ConstDecimals<21>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<6>
impl Sub<ConstDecimals<21>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<7>
impl Sub<ConstDecimals<21>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<8>
impl Sub<ConstDecimals<21>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<9>
impl Sub<ConstDecimals<21>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<10>
impl Sub<ConstDecimals<21>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<11>
impl Sub<ConstDecimals<21>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<12>
impl Sub<ConstDecimals<21>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<13>
impl Sub<ConstDecimals<21>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<14>
impl Sub<ConstDecimals<21>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<15>
impl Sub<ConstDecimals<21>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<16>
impl Sub<ConstDecimals<21>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<17>
impl Sub<ConstDecimals<21>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<18>
impl Sub<ConstDecimals<21>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<19>
impl Sub<ConstDecimals<21>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<20>
impl Sub<ConstDecimals<21>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<22>
impl Sub<ConstDecimals<21>> for ConstDecimals<22>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<23>
impl Sub<ConstDecimals<21>> for ConstDecimals<23>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<24>
impl Sub<ConstDecimals<21>> for ConstDecimals<24>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<25>
impl Sub<ConstDecimals<21>> for ConstDecimals<25>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<26>
impl Sub<ConstDecimals<21>> for ConstDecimals<26>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<27>
impl Sub<ConstDecimals<21>> for ConstDecimals<27>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<28>
impl Sub<ConstDecimals<21>> for ConstDecimals<28>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<29>
impl Sub<ConstDecimals<21>> for ConstDecimals<29>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<30>
impl Sub<ConstDecimals<21>> for ConstDecimals<30>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<31>
impl Sub<ConstDecimals<21>> for ConstDecimals<31>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<32>
impl Sub<ConstDecimals<21>> for ConstDecimals<32>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<33>
impl Sub<ConstDecimals<21>> for ConstDecimals<33>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<34>
impl Sub<ConstDecimals<21>> for ConstDecimals<34>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<35>
impl Sub<ConstDecimals<21>> for ConstDecimals<35>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<36>
impl Sub<ConstDecimals<21>> for ConstDecimals<36>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<37>
impl Sub<ConstDecimals<21>> for ConstDecimals<37>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<38>
impl Sub<ConstDecimals<21>> for ConstDecimals<38>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<39>
impl Sub<ConstDecimals<21>> for ConstDecimals<39>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<40>
impl Sub<ConstDecimals<21>> for ConstDecimals<40>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<41>
impl Sub<ConstDecimals<21>> for ConstDecimals<41>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<42>
impl Sub<ConstDecimals<21>> for ConstDecimals<42>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<43>
impl Sub<ConstDecimals<21>> for ConstDecimals<43>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<44>
impl Sub<ConstDecimals<21>> for ConstDecimals<44>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<45>
impl Sub<ConstDecimals<21>> for ConstDecimals<45>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<46>
impl Sub<ConstDecimals<21>> for ConstDecimals<46>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<47>
impl Sub<ConstDecimals<21>> for ConstDecimals<47>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<48>
impl Sub<ConstDecimals<21>> for ConstDecimals<48>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<49>
impl Sub<ConstDecimals<21>> for ConstDecimals<49>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<50>
impl Sub<ConstDecimals<21>> for ConstDecimals<50>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<51>
impl Sub<ConstDecimals<21>> for ConstDecimals<51>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<52>
impl Sub<ConstDecimals<21>> for ConstDecimals<52>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<53>
impl Sub<ConstDecimals<21>> for ConstDecimals<53>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<54>
impl Sub<ConstDecimals<21>> for ConstDecimals<54>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<55>
impl Sub<ConstDecimals<21>> for ConstDecimals<55>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<56>
impl Sub<ConstDecimals<21>> for ConstDecimals<56>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<57>
impl Sub<ConstDecimals<21>> for ConstDecimals<57>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<58>
impl Sub<ConstDecimals<21>> for ConstDecimals<58>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<59>
impl Sub<ConstDecimals<21>> for ConstDecimals<59>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<60>
impl Sub<ConstDecimals<21>> for ConstDecimals<60>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<61>
impl Sub<ConstDecimals<21>> for ConstDecimals<61>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<62>
impl Sub<ConstDecimals<21>> for ConstDecimals<62>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<63>
impl Sub<ConstDecimals<21>> for ConstDecimals<63>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<21>> for ConstDecimals<64>
impl Sub<ConstDecimals<21>> for ConstDecimals<64>
type Output = ConstDecimals<43>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<0>
impl Sub<ConstDecimals<22>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<1>
impl Sub<ConstDecimals<22>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<2>
impl Sub<ConstDecimals<22>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<3>
impl Sub<ConstDecimals<22>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<4>
impl Sub<ConstDecimals<22>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<5>
impl Sub<ConstDecimals<22>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<6>
impl Sub<ConstDecimals<22>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<7>
impl Sub<ConstDecimals<22>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<8>
impl Sub<ConstDecimals<22>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<9>
impl Sub<ConstDecimals<22>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<10>
impl Sub<ConstDecimals<22>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<11>
impl Sub<ConstDecimals<22>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<12>
impl Sub<ConstDecimals<22>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<13>
impl Sub<ConstDecimals<22>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<14>
impl Sub<ConstDecimals<22>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<15>
impl Sub<ConstDecimals<22>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<16>
impl Sub<ConstDecimals<22>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<17>
impl Sub<ConstDecimals<22>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<18>
impl Sub<ConstDecimals<22>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<19>
impl Sub<ConstDecimals<22>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<20>
impl Sub<ConstDecimals<22>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<21>
impl Sub<ConstDecimals<22>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<23>
impl Sub<ConstDecimals<22>> for ConstDecimals<23>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<24>
impl Sub<ConstDecimals<22>> for ConstDecimals<24>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<25>
impl Sub<ConstDecimals<22>> for ConstDecimals<25>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<26>
impl Sub<ConstDecimals<22>> for ConstDecimals<26>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<27>
impl Sub<ConstDecimals<22>> for ConstDecimals<27>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<28>
impl Sub<ConstDecimals<22>> for ConstDecimals<28>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<29>
impl Sub<ConstDecimals<22>> for ConstDecimals<29>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<30>
impl Sub<ConstDecimals<22>> for ConstDecimals<30>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<31>
impl Sub<ConstDecimals<22>> for ConstDecimals<31>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<32>
impl Sub<ConstDecimals<22>> for ConstDecimals<32>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<33>
impl Sub<ConstDecimals<22>> for ConstDecimals<33>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<34>
impl Sub<ConstDecimals<22>> for ConstDecimals<34>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<35>
impl Sub<ConstDecimals<22>> for ConstDecimals<35>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<36>
impl Sub<ConstDecimals<22>> for ConstDecimals<36>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<37>
impl Sub<ConstDecimals<22>> for ConstDecimals<37>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<38>
impl Sub<ConstDecimals<22>> for ConstDecimals<38>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<39>
impl Sub<ConstDecimals<22>> for ConstDecimals<39>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<40>
impl Sub<ConstDecimals<22>> for ConstDecimals<40>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<41>
impl Sub<ConstDecimals<22>> for ConstDecimals<41>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<42>
impl Sub<ConstDecimals<22>> for ConstDecimals<42>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<43>
impl Sub<ConstDecimals<22>> for ConstDecimals<43>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<44>
impl Sub<ConstDecimals<22>> for ConstDecimals<44>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<45>
impl Sub<ConstDecimals<22>> for ConstDecimals<45>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<46>
impl Sub<ConstDecimals<22>> for ConstDecimals<46>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<47>
impl Sub<ConstDecimals<22>> for ConstDecimals<47>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<48>
impl Sub<ConstDecimals<22>> for ConstDecimals<48>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<49>
impl Sub<ConstDecimals<22>> for ConstDecimals<49>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<50>
impl Sub<ConstDecimals<22>> for ConstDecimals<50>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<51>
impl Sub<ConstDecimals<22>> for ConstDecimals<51>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<52>
impl Sub<ConstDecimals<22>> for ConstDecimals<52>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<53>
impl Sub<ConstDecimals<22>> for ConstDecimals<53>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<54>
impl Sub<ConstDecimals<22>> for ConstDecimals<54>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<55>
impl Sub<ConstDecimals<22>> for ConstDecimals<55>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<56>
impl Sub<ConstDecimals<22>> for ConstDecimals<56>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<57>
impl Sub<ConstDecimals<22>> for ConstDecimals<57>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<58>
impl Sub<ConstDecimals<22>> for ConstDecimals<58>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<59>
impl Sub<ConstDecimals<22>> for ConstDecimals<59>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<60>
impl Sub<ConstDecimals<22>> for ConstDecimals<60>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<61>
impl Sub<ConstDecimals<22>> for ConstDecimals<61>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<62>
impl Sub<ConstDecimals<22>> for ConstDecimals<62>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<63>
impl Sub<ConstDecimals<22>> for ConstDecimals<63>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<22>> for ConstDecimals<64>
impl Sub<ConstDecimals<22>> for ConstDecimals<64>
type Output = ConstDecimals<42>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<0>
impl Sub<ConstDecimals<23>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<1>
impl Sub<ConstDecimals<23>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<2>
impl Sub<ConstDecimals<23>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<3>
impl Sub<ConstDecimals<23>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<4>
impl Sub<ConstDecimals<23>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<5>
impl Sub<ConstDecimals<23>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<6>
impl Sub<ConstDecimals<23>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<7>
impl Sub<ConstDecimals<23>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<8>
impl Sub<ConstDecimals<23>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<9>
impl Sub<ConstDecimals<23>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<10>
impl Sub<ConstDecimals<23>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<11>
impl Sub<ConstDecimals<23>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<12>
impl Sub<ConstDecimals<23>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<13>
impl Sub<ConstDecimals<23>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<14>
impl Sub<ConstDecimals<23>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<15>
impl Sub<ConstDecimals<23>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<16>
impl Sub<ConstDecimals<23>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<17>
impl Sub<ConstDecimals<23>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<18>
impl Sub<ConstDecimals<23>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<19>
impl Sub<ConstDecimals<23>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<20>
impl Sub<ConstDecimals<23>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<21>
impl Sub<ConstDecimals<23>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<22>
impl Sub<ConstDecimals<23>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<24>
impl Sub<ConstDecimals<23>> for ConstDecimals<24>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<25>
impl Sub<ConstDecimals<23>> for ConstDecimals<25>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<26>
impl Sub<ConstDecimals<23>> for ConstDecimals<26>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<27>
impl Sub<ConstDecimals<23>> for ConstDecimals<27>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<28>
impl Sub<ConstDecimals<23>> for ConstDecimals<28>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<29>
impl Sub<ConstDecimals<23>> for ConstDecimals<29>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<30>
impl Sub<ConstDecimals<23>> for ConstDecimals<30>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<31>
impl Sub<ConstDecimals<23>> for ConstDecimals<31>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<32>
impl Sub<ConstDecimals<23>> for ConstDecimals<32>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<33>
impl Sub<ConstDecimals<23>> for ConstDecimals<33>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<34>
impl Sub<ConstDecimals<23>> for ConstDecimals<34>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<35>
impl Sub<ConstDecimals<23>> for ConstDecimals<35>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<36>
impl Sub<ConstDecimals<23>> for ConstDecimals<36>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<37>
impl Sub<ConstDecimals<23>> for ConstDecimals<37>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<38>
impl Sub<ConstDecimals<23>> for ConstDecimals<38>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<39>
impl Sub<ConstDecimals<23>> for ConstDecimals<39>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<40>
impl Sub<ConstDecimals<23>> for ConstDecimals<40>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<41>
impl Sub<ConstDecimals<23>> for ConstDecimals<41>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<42>
impl Sub<ConstDecimals<23>> for ConstDecimals<42>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<43>
impl Sub<ConstDecimals<23>> for ConstDecimals<43>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<44>
impl Sub<ConstDecimals<23>> for ConstDecimals<44>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<45>
impl Sub<ConstDecimals<23>> for ConstDecimals<45>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<46>
impl Sub<ConstDecimals<23>> for ConstDecimals<46>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<47>
impl Sub<ConstDecimals<23>> for ConstDecimals<47>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<48>
impl Sub<ConstDecimals<23>> for ConstDecimals<48>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<49>
impl Sub<ConstDecimals<23>> for ConstDecimals<49>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<50>
impl Sub<ConstDecimals<23>> for ConstDecimals<50>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<51>
impl Sub<ConstDecimals<23>> for ConstDecimals<51>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<52>
impl Sub<ConstDecimals<23>> for ConstDecimals<52>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<53>
impl Sub<ConstDecimals<23>> for ConstDecimals<53>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<54>
impl Sub<ConstDecimals<23>> for ConstDecimals<54>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<55>
impl Sub<ConstDecimals<23>> for ConstDecimals<55>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<56>
impl Sub<ConstDecimals<23>> for ConstDecimals<56>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<57>
impl Sub<ConstDecimals<23>> for ConstDecimals<57>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<58>
impl Sub<ConstDecimals<23>> for ConstDecimals<58>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<59>
impl Sub<ConstDecimals<23>> for ConstDecimals<59>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<60>
impl Sub<ConstDecimals<23>> for ConstDecimals<60>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<61>
impl Sub<ConstDecimals<23>> for ConstDecimals<61>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<62>
impl Sub<ConstDecimals<23>> for ConstDecimals<62>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<63>
impl Sub<ConstDecimals<23>> for ConstDecimals<63>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<23>> for ConstDecimals<64>
impl Sub<ConstDecimals<23>> for ConstDecimals<64>
type Output = ConstDecimals<41>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<0>
impl Sub<ConstDecimals<24>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<1>
impl Sub<ConstDecimals<24>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<2>
impl Sub<ConstDecimals<24>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<3>
impl Sub<ConstDecimals<24>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<4>
impl Sub<ConstDecimals<24>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<5>
impl Sub<ConstDecimals<24>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<6>
impl Sub<ConstDecimals<24>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<7>
impl Sub<ConstDecimals<24>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<8>
impl Sub<ConstDecimals<24>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<9>
impl Sub<ConstDecimals<24>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<10>
impl Sub<ConstDecimals<24>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<11>
impl Sub<ConstDecimals<24>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<12>
impl Sub<ConstDecimals<24>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<13>
impl Sub<ConstDecimals<24>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<14>
impl Sub<ConstDecimals<24>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<15>
impl Sub<ConstDecimals<24>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<16>
impl Sub<ConstDecimals<24>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<17>
impl Sub<ConstDecimals<24>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<18>
impl Sub<ConstDecimals<24>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<19>
impl Sub<ConstDecimals<24>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<20>
impl Sub<ConstDecimals<24>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<21>
impl Sub<ConstDecimals<24>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<22>
impl Sub<ConstDecimals<24>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<23>
impl Sub<ConstDecimals<24>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<25>
impl Sub<ConstDecimals<24>> for ConstDecimals<25>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<26>
impl Sub<ConstDecimals<24>> for ConstDecimals<26>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<27>
impl Sub<ConstDecimals<24>> for ConstDecimals<27>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<28>
impl Sub<ConstDecimals<24>> for ConstDecimals<28>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<29>
impl Sub<ConstDecimals<24>> for ConstDecimals<29>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<30>
impl Sub<ConstDecimals<24>> for ConstDecimals<30>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<31>
impl Sub<ConstDecimals<24>> for ConstDecimals<31>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<32>
impl Sub<ConstDecimals<24>> for ConstDecimals<32>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<33>
impl Sub<ConstDecimals<24>> for ConstDecimals<33>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<34>
impl Sub<ConstDecimals<24>> for ConstDecimals<34>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<35>
impl Sub<ConstDecimals<24>> for ConstDecimals<35>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<36>
impl Sub<ConstDecimals<24>> for ConstDecimals<36>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<37>
impl Sub<ConstDecimals<24>> for ConstDecimals<37>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<38>
impl Sub<ConstDecimals<24>> for ConstDecimals<38>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<39>
impl Sub<ConstDecimals<24>> for ConstDecimals<39>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<40>
impl Sub<ConstDecimals<24>> for ConstDecimals<40>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<41>
impl Sub<ConstDecimals<24>> for ConstDecimals<41>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<42>
impl Sub<ConstDecimals<24>> for ConstDecimals<42>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<43>
impl Sub<ConstDecimals<24>> for ConstDecimals<43>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<44>
impl Sub<ConstDecimals<24>> for ConstDecimals<44>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<45>
impl Sub<ConstDecimals<24>> for ConstDecimals<45>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<46>
impl Sub<ConstDecimals<24>> for ConstDecimals<46>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<47>
impl Sub<ConstDecimals<24>> for ConstDecimals<47>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<48>
impl Sub<ConstDecimals<24>> for ConstDecimals<48>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<49>
impl Sub<ConstDecimals<24>> for ConstDecimals<49>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<50>
impl Sub<ConstDecimals<24>> for ConstDecimals<50>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<51>
impl Sub<ConstDecimals<24>> for ConstDecimals<51>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<52>
impl Sub<ConstDecimals<24>> for ConstDecimals<52>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<53>
impl Sub<ConstDecimals<24>> for ConstDecimals<53>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<54>
impl Sub<ConstDecimals<24>> for ConstDecimals<54>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<55>
impl Sub<ConstDecimals<24>> for ConstDecimals<55>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<56>
impl Sub<ConstDecimals<24>> for ConstDecimals<56>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<57>
impl Sub<ConstDecimals<24>> for ConstDecimals<57>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<58>
impl Sub<ConstDecimals<24>> for ConstDecimals<58>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<59>
impl Sub<ConstDecimals<24>> for ConstDecimals<59>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<60>
impl Sub<ConstDecimals<24>> for ConstDecimals<60>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<61>
impl Sub<ConstDecimals<24>> for ConstDecimals<61>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<62>
impl Sub<ConstDecimals<24>> for ConstDecimals<62>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<63>
impl Sub<ConstDecimals<24>> for ConstDecimals<63>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<24>> for ConstDecimals<64>
impl Sub<ConstDecimals<24>> for ConstDecimals<64>
type Output = ConstDecimals<40>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<0>
impl Sub<ConstDecimals<25>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<1>
impl Sub<ConstDecimals<25>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<2>
impl Sub<ConstDecimals<25>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<3>
impl Sub<ConstDecimals<25>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<4>
impl Sub<ConstDecimals<25>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<5>
impl Sub<ConstDecimals<25>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<6>
impl Sub<ConstDecimals<25>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<7>
impl Sub<ConstDecimals<25>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<8>
impl Sub<ConstDecimals<25>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<9>
impl Sub<ConstDecimals<25>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<10>
impl Sub<ConstDecimals<25>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<11>
impl Sub<ConstDecimals<25>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<12>
impl Sub<ConstDecimals<25>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<13>
impl Sub<ConstDecimals<25>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<14>
impl Sub<ConstDecimals<25>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<15>
impl Sub<ConstDecimals<25>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<16>
impl Sub<ConstDecimals<25>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<17>
impl Sub<ConstDecimals<25>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<18>
impl Sub<ConstDecimals<25>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<19>
impl Sub<ConstDecimals<25>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<20>
impl Sub<ConstDecimals<25>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<21>
impl Sub<ConstDecimals<25>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<22>
impl Sub<ConstDecimals<25>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<23>
impl Sub<ConstDecimals<25>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<24>
impl Sub<ConstDecimals<25>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<26>
impl Sub<ConstDecimals<25>> for ConstDecimals<26>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<27>
impl Sub<ConstDecimals<25>> for ConstDecimals<27>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<28>
impl Sub<ConstDecimals<25>> for ConstDecimals<28>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<29>
impl Sub<ConstDecimals<25>> for ConstDecimals<29>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<30>
impl Sub<ConstDecimals<25>> for ConstDecimals<30>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<31>
impl Sub<ConstDecimals<25>> for ConstDecimals<31>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<32>
impl Sub<ConstDecimals<25>> for ConstDecimals<32>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<33>
impl Sub<ConstDecimals<25>> for ConstDecimals<33>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<34>
impl Sub<ConstDecimals<25>> for ConstDecimals<34>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<35>
impl Sub<ConstDecimals<25>> for ConstDecimals<35>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<36>
impl Sub<ConstDecimals<25>> for ConstDecimals<36>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<37>
impl Sub<ConstDecimals<25>> for ConstDecimals<37>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<38>
impl Sub<ConstDecimals<25>> for ConstDecimals<38>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<39>
impl Sub<ConstDecimals<25>> for ConstDecimals<39>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<40>
impl Sub<ConstDecimals<25>> for ConstDecimals<40>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<41>
impl Sub<ConstDecimals<25>> for ConstDecimals<41>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<42>
impl Sub<ConstDecimals<25>> for ConstDecimals<42>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<43>
impl Sub<ConstDecimals<25>> for ConstDecimals<43>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<44>
impl Sub<ConstDecimals<25>> for ConstDecimals<44>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<45>
impl Sub<ConstDecimals<25>> for ConstDecimals<45>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<46>
impl Sub<ConstDecimals<25>> for ConstDecimals<46>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<47>
impl Sub<ConstDecimals<25>> for ConstDecimals<47>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<48>
impl Sub<ConstDecimals<25>> for ConstDecimals<48>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<49>
impl Sub<ConstDecimals<25>> for ConstDecimals<49>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<50>
impl Sub<ConstDecimals<25>> for ConstDecimals<50>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<51>
impl Sub<ConstDecimals<25>> for ConstDecimals<51>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<52>
impl Sub<ConstDecimals<25>> for ConstDecimals<52>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<53>
impl Sub<ConstDecimals<25>> for ConstDecimals<53>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<54>
impl Sub<ConstDecimals<25>> for ConstDecimals<54>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<55>
impl Sub<ConstDecimals<25>> for ConstDecimals<55>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<56>
impl Sub<ConstDecimals<25>> for ConstDecimals<56>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<57>
impl Sub<ConstDecimals<25>> for ConstDecimals<57>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<58>
impl Sub<ConstDecimals<25>> for ConstDecimals<58>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<59>
impl Sub<ConstDecimals<25>> for ConstDecimals<59>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<60>
impl Sub<ConstDecimals<25>> for ConstDecimals<60>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<61>
impl Sub<ConstDecimals<25>> for ConstDecimals<61>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<62>
impl Sub<ConstDecimals<25>> for ConstDecimals<62>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<63>
impl Sub<ConstDecimals<25>> for ConstDecimals<63>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<25>> for ConstDecimals<64>
impl Sub<ConstDecimals<25>> for ConstDecimals<64>
type Output = ConstDecimals<39>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<0>
impl Sub<ConstDecimals<26>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<1>
impl Sub<ConstDecimals<26>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<2>
impl Sub<ConstDecimals<26>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<3>
impl Sub<ConstDecimals<26>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<4>
impl Sub<ConstDecimals<26>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<5>
impl Sub<ConstDecimals<26>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<6>
impl Sub<ConstDecimals<26>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<7>
impl Sub<ConstDecimals<26>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<8>
impl Sub<ConstDecimals<26>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<9>
impl Sub<ConstDecimals<26>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<10>
impl Sub<ConstDecimals<26>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<11>
impl Sub<ConstDecimals<26>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<12>
impl Sub<ConstDecimals<26>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<13>
impl Sub<ConstDecimals<26>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<14>
impl Sub<ConstDecimals<26>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<15>
impl Sub<ConstDecimals<26>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<16>
impl Sub<ConstDecimals<26>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<17>
impl Sub<ConstDecimals<26>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<18>
impl Sub<ConstDecimals<26>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<19>
impl Sub<ConstDecimals<26>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<20>
impl Sub<ConstDecimals<26>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<21>
impl Sub<ConstDecimals<26>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<22>
impl Sub<ConstDecimals<26>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<23>
impl Sub<ConstDecimals<26>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<24>
impl Sub<ConstDecimals<26>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<25>
impl Sub<ConstDecimals<26>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<27>
impl Sub<ConstDecimals<26>> for ConstDecimals<27>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<28>
impl Sub<ConstDecimals<26>> for ConstDecimals<28>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<29>
impl Sub<ConstDecimals<26>> for ConstDecimals<29>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<30>
impl Sub<ConstDecimals<26>> for ConstDecimals<30>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<31>
impl Sub<ConstDecimals<26>> for ConstDecimals<31>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<32>
impl Sub<ConstDecimals<26>> for ConstDecimals<32>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<33>
impl Sub<ConstDecimals<26>> for ConstDecimals<33>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<34>
impl Sub<ConstDecimals<26>> for ConstDecimals<34>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<35>
impl Sub<ConstDecimals<26>> for ConstDecimals<35>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<36>
impl Sub<ConstDecimals<26>> for ConstDecimals<36>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<37>
impl Sub<ConstDecimals<26>> for ConstDecimals<37>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<38>
impl Sub<ConstDecimals<26>> for ConstDecimals<38>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<39>
impl Sub<ConstDecimals<26>> for ConstDecimals<39>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<40>
impl Sub<ConstDecimals<26>> for ConstDecimals<40>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<41>
impl Sub<ConstDecimals<26>> for ConstDecimals<41>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<42>
impl Sub<ConstDecimals<26>> for ConstDecimals<42>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<43>
impl Sub<ConstDecimals<26>> for ConstDecimals<43>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<44>
impl Sub<ConstDecimals<26>> for ConstDecimals<44>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<45>
impl Sub<ConstDecimals<26>> for ConstDecimals<45>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<46>
impl Sub<ConstDecimals<26>> for ConstDecimals<46>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<47>
impl Sub<ConstDecimals<26>> for ConstDecimals<47>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<48>
impl Sub<ConstDecimals<26>> for ConstDecimals<48>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<49>
impl Sub<ConstDecimals<26>> for ConstDecimals<49>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<50>
impl Sub<ConstDecimals<26>> for ConstDecimals<50>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<51>
impl Sub<ConstDecimals<26>> for ConstDecimals<51>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<52>
impl Sub<ConstDecimals<26>> for ConstDecimals<52>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<53>
impl Sub<ConstDecimals<26>> for ConstDecimals<53>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<54>
impl Sub<ConstDecimals<26>> for ConstDecimals<54>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<55>
impl Sub<ConstDecimals<26>> for ConstDecimals<55>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<56>
impl Sub<ConstDecimals<26>> for ConstDecimals<56>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<57>
impl Sub<ConstDecimals<26>> for ConstDecimals<57>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<58>
impl Sub<ConstDecimals<26>> for ConstDecimals<58>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<59>
impl Sub<ConstDecimals<26>> for ConstDecimals<59>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<60>
impl Sub<ConstDecimals<26>> for ConstDecimals<60>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<61>
impl Sub<ConstDecimals<26>> for ConstDecimals<61>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<62>
impl Sub<ConstDecimals<26>> for ConstDecimals<62>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<63>
impl Sub<ConstDecimals<26>> for ConstDecimals<63>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<26>> for ConstDecimals<64>
impl Sub<ConstDecimals<26>> for ConstDecimals<64>
type Output = ConstDecimals<38>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<0>
impl Sub<ConstDecimals<27>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<1>
impl Sub<ConstDecimals<27>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<2>
impl Sub<ConstDecimals<27>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<3>
impl Sub<ConstDecimals<27>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<4>
impl Sub<ConstDecimals<27>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<5>
impl Sub<ConstDecimals<27>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<6>
impl Sub<ConstDecimals<27>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<7>
impl Sub<ConstDecimals<27>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<8>
impl Sub<ConstDecimals<27>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<9>
impl Sub<ConstDecimals<27>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<10>
impl Sub<ConstDecimals<27>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<11>
impl Sub<ConstDecimals<27>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<12>
impl Sub<ConstDecimals<27>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<13>
impl Sub<ConstDecimals<27>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<14>
impl Sub<ConstDecimals<27>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<15>
impl Sub<ConstDecimals<27>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<16>
impl Sub<ConstDecimals<27>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<17>
impl Sub<ConstDecimals<27>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<18>
impl Sub<ConstDecimals<27>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<19>
impl Sub<ConstDecimals<27>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<20>
impl Sub<ConstDecimals<27>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<21>
impl Sub<ConstDecimals<27>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<22>
impl Sub<ConstDecimals<27>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<23>
impl Sub<ConstDecimals<27>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<24>
impl Sub<ConstDecimals<27>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<25>
impl Sub<ConstDecimals<27>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<26>
impl Sub<ConstDecimals<27>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<28>
impl Sub<ConstDecimals<27>> for ConstDecimals<28>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<29>
impl Sub<ConstDecimals<27>> for ConstDecimals<29>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<30>
impl Sub<ConstDecimals<27>> for ConstDecimals<30>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<31>
impl Sub<ConstDecimals<27>> for ConstDecimals<31>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<32>
impl Sub<ConstDecimals<27>> for ConstDecimals<32>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<33>
impl Sub<ConstDecimals<27>> for ConstDecimals<33>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<34>
impl Sub<ConstDecimals<27>> for ConstDecimals<34>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<35>
impl Sub<ConstDecimals<27>> for ConstDecimals<35>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<36>
impl Sub<ConstDecimals<27>> for ConstDecimals<36>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<37>
impl Sub<ConstDecimals<27>> for ConstDecimals<37>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<38>
impl Sub<ConstDecimals<27>> for ConstDecimals<38>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<39>
impl Sub<ConstDecimals<27>> for ConstDecimals<39>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<40>
impl Sub<ConstDecimals<27>> for ConstDecimals<40>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<41>
impl Sub<ConstDecimals<27>> for ConstDecimals<41>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<42>
impl Sub<ConstDecimals<27>> for ConstDecimals<42>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<43>
impl Sub<ConstDecimals<27>> for ConstDecimals<43>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<44>
impl Sub<ConstDecimals<27>> for ConstDecimals<44>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<45>
impl Sub<ConstDecimals<27>> for ConstDecimals<45>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<46>
impl Sub<ConstDecimals<27>> for ConstDecimals<46>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<47>
impl Sub<ConstDecimals<27>> for ConstDecimals<47>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<48>
impl Sub<ConstDecimals<27>> for ConstDecimals<48>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<49>
impl Sub<ConstDecimals<27>> for ConstDecimals<49>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<50>
impl Sub<ConstDecimals<27>> for ConstDecimals<50>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<51>
impl Sub<ConstDecimals<27>> for ConstDecimals<51>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<52>
impl Sub<ConstDecimals<27>> for ConstDecimals<52>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<53>
impl Sub<ConstDecimals<27>> for ConstDecimals<53>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<54>
impl Sub<ConstDecimals<27>> for ConstDecimals<54>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<55>
impl Sub<ConstDecimals<27>> for ConstDecimals<55>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<56>
impl Sub<ConstDecimals<27>> for ConstDecimals<56>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<57>
impl Sub<ConstDecimals<27>> for ConstDecimals<57>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<58>
impl Sub<ConstDecimals<27>> for ConstDecimals<58>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<59>
impl Sub<ConstDecimals<27>> for ConstDecimals<59>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<60>
impl Sub<ConstDecimals<27>> for ConstDecimals<60>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<61>
impl Sub<ConstDecimals<27>> for ConstDecimals<61>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<62>
impl Sub<ConstDecimals<27>> for ConstDecimals<62>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<63>
impl Sub<ConstDecimals<27>> for ConstDecimals<63>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<27>> for ConstDecimals<64>
impl Sub<ConstDecimals<27>> for ConstDecimals<64>
type Output = ConstDecimals<37>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<0>
impl Sub<ConstDecimals<28>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<1>
impl Sub<ConstDecimals<28>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<2>
impl Sub<ConstDecimals<28>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<3>
impl Sub<ConstDecimals<28>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<4>
impl Sub<ConstDecimals<28>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<5>
impl Sub<ConstDecimals<28>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<6>
impl Sub<ConstDecimals<28>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<7>
impl Sub<ConstDecimals<28>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<8>
impl Sub<ConstDecimals<28>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<9>
impl Sub<ConstDecimals<28>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<10>
impl Sub<ConstDecimals<28>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<11>
impl Sub<ConstDecimals<28>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<12>
impl Sub<ConstDecimals<28>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<13>
impl Sub<ConstDecimals<28>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<14>
impl Sub<ConstDecimals<28>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<15>
impl Sub<ConstDecimals<28>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<16>
impl Sub<ConstDecimals<28>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<17>
impl Sub<ConstDecimals<28>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<18>
impl Sub<ConstDecimals<28>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<19>
impl Sub<ConstDecimals<28>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<20>
impl Sub<ConstDecimals<28>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<21>
impl Sub<ConstDecimals<28>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<22>
impl Sub<ConstDecimals<28>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<23>
impl Sub<ConstDecimals<28>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<24>
impl Sub<ConstDecimals<28>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<25>
impl Sub<ConstDecimals<28>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<26>
impl Sub<ConstDecimals<28>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<27>
impl Sub<ConstDecimals<28>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<29>
impl Sub<ConstDecimals<28>> for ConstDecimals<29>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<30>
impl Sub<ConstDecimals<28>> for ConstDecimals<30>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<31>
impl Sub<ConstDecimals<28>> for ConstDecimals<31>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<32>
impl Sub<ConstDecimals<28>> for ConstDecimals<32>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<33>
impl Sub<ConstDecimals<28>> for ConstDecimals<33>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<34>
impl Sub<ConstDecimals<28>> for ConstDecimals<34>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<35>
impl Sub<ConstDecimals<28>> for ConstDecimals<35>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<36>
impl Sub<ConstDecimals<28>> for ConstDecimals<36>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<37>
impl Sub<ConstDecimals<28>> for ConstDecimals<37>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<38>
impl Sub<ConstDecimals<28>> for ConstDecimals<38>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<39>
impl Sub<ConstDecimals<28>> for ConstDecimals<39>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<40>
impl Sub<ConstDecimals<28>> for ConstDecimals<40>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<41>
impl Sub<ConstDecimals<28>> for ConstDecimals<41>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<42>
impl Sub<ConstDecimals<28>> for ConstDecimals<42>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<43>
impl Sub<ConstDecimals<28>> for ConstDecimals<43>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<44>
impl Sub<ConstDecimals<28>> for ConstDecimals<44>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<45>
impl Sub<ConstDecimals<28>> for ConstDecimals<45>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<46>
impl Sub<ConstDecimals<28>> for ConstDecimals<46>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<47>
impl Sub<ConstDecimals<28>> for ConstDecimals<47>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<48>
impl Sub<ConstDecimals<28>> for ConstDecimals<48>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<49>
impl Sub<ConstDecimals<28>> for ConstDecimals<49>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<50>
impl Sub<ConstDecimals<28>> for ConstDecimals<50>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<51>
impl Sub<ConstDecimals<28>> for ConstDecimals<51>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<52>
impl Sub<ConstDecimals<28>> for ConstDecimals<52>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<53>
impl Sub<ConstDecimals<28>> for ConstDecimals<53>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<54>
impl Sub<ConstDecimals<28>> for ConstDecimals<54>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<55>
impl Sub<ConstDecimals<28>> for ConstDecimals<55>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<56>
impl Sub<ConstDecimals<28>> for ConstDecimals<56>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<57>
impl Sub<ConstDecimals<28>> for ConstDecimals<57>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<58>
impl Sub<ConstDecimals<28>> for ConstDecimals<58>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<59>
impl Sub<ConstDecimals<28>> for ConstDecimals<59>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<60>
impl Sub<ConstDecimals<28>> for ConstDecimals<60>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<61>
impl Sub<ConstDecimals<28>> for ConstDecimals<61>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<62>
impl Sub<ConstDecimals<28>> for ConstDecimals<62>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<63>
impl Sub<ConstDecimals<28>> for ConstDecimals<63>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<28>> for ConstDecimals<64>
impl Sub<ConstDecimals<28>> for ConstDecimals<64>
type Output = ConstDecimals<36>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<0>
impl Sub<ConstDecimals<29>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<1>
impl Sub<ConstDecimals<29>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<2>
impl Sub<ConstDecimals<29>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<3>
impl Sub<ConstDecimals<29>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<4>
impl Sub<ConstDecimals<29>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<5>
impl Sub<ConstDecimals<29>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<6>
impl Sub<ConstDecimals<29>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<7>
impl Sub<ConstDecimals<29>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<8>
impl Sub<ConstDecimals<29>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<9>
impl Sub<ConstDecimals<29>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<10>
impl Sub<ConstDecimals<29>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<11>
impl Sub<ConstDecimals<29>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<12>
impl Sub<ConstDecimals<29>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<13>
impl Sub<ConstDecimals<29>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<14>
impl Sub<ConstDecimals<29>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<15>
impl Sub<ConstDecimals<29>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<16>
impl Sub<ConstDecimals<29>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<17>
impl Sub<ConstDecimals<29>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<18>
impl Sub<ConstDecimals<29>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<19>
impl Sub<ConstDecimals<29>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<20>
impl Sub<ConstDecimals<29>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<21>
impl Sub<ConstDecimals<29>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<22>
impl Sub<ConstDecimals<29>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<23>
impl Sub<ConstDecimals<29>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<24>
impl Sub<ConstDecimals<29>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<25>
impl Sub<ConstDecimals<29>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<26>
impl Sub<ConstDecimals<29>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<27>
impl Sub<ConstDecimals<29>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<28>
impl Sub<ConstDecimals<29>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<30>
impl Sub<ConstDecimals<29>> for ConstDecimals<30>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<31>
impl Sub<ConstDecimals<29>> for ConstDecimals<31>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<32>
impl Sub<ConstDecimals<29>> for ConstDecimals<32>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<33>
impl Sub<ConstDecimals<29>> for ConstDecimals<33>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<34>
impl Sub<ConstDecimals<29>> for ConstDecimals<34>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<35>
impl Sub<ConstDecimals<29>> for ConstDecimals<35>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<36>
impl Sub<ConstDecimals<29>> for ConstDecimals<36>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<37>
impl Sub<ConstDecimals<29>> for ConstDecimals<37>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<38>
impl Sub<ConstDecimals<29>> for ConstDecimals<38>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<39>
impl Sub<ConstDecimals<29>> for ConstDecimals<39>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<40>
impl Sub<ConstDecimals<29>> for ConstDecimals<40>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<41>
impl Sub<ConstDecimals<29>> for ConstDecimals<41>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<42>
impl Sub<ConstDecimals<29>> for ConstDecimals<42>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<43>
impl Sub<ConstDecimals<29>> for ConstDecimals<43>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<44>
impl Sub<ConstDecimals<29>> for ConstDecimals<44>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<45>
impl Sub<ConstDecimals<29>> for ConstDecimals<45>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<46>
impl Sub<ConstDecimals<29>> for ConstDecimals<46>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<47>
impl Sub<ConstDecimals<29>> for ConstDecimals<47>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<48>
impl Sub<ConstDecimals<29>> for ConstDecimals<48>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<49>
impl Sub<ConstDecimals<29>> for ConstDecimals<49>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<50>
impl Sub<ConstDecimals<29>> for ConstDecimals<50>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<51>
impl Sub<ConstDecimals<29>> for ConstDecimals<51>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<52>
impl Sub<ConstDecimals<29>> for ConstDecimals<52>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<53>
impl Sub<ConstDecimals<29>> for ConstDecimals<53>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<54>
impl Sub<ConstDecimals<29>> for ConstDecimals<54>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<55>
impl Sub<ConstDecimals<29>> for ConstDecimals<55>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<56>
impl Sub<ConstDecimals<29>> for ConstDecimals<56>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<57>
impl Sub<ConstDecimals<29>> for ConstDecimals<57>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<58>
impl Sub<ConstDecimals<29>> for ConstDecimals<58>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<59>
impl Sub<ConstDecimals<29>> for ConstDecimals<59>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<60>
impl Sub<ConstDecimals<29>> for ConstDecimals<60>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<61>
impl Sub<ConstDecimals<29>> for ConstDecimals<61>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<62>
impl Sub<ConstDecimals<29>> for ConstDecimals<62>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<63>
impl Sub<ConstDecimals<29>> for ConstDecimals<63>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<29>> for ConstDecimals<64>
impl Sub<ConstDecimals<29>> for ConstDecimals<64>
type Output = ConstDecimals<35>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<0>
impl Sub<ConstDecimals<30>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<1>
impl Sub<ConstDecimals<30>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<2>
impl Sub<ConstDecimals<30>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<3>
impl Sub<ConstDecimals<30>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<4>
impl Sub<ConstDecimals<30>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<5>
impl Sub<ConstDecimals<30>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<6>
impl Sub<ConstDecimals<30>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<7>
impl Sub<ConstDecimals<30>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<8>
impl Sub<ConstDecimals<30>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<9>
impl Sub<ConstDecimals<30>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<10>
impl Sub<ConstDecimals<30>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<11>
impl Sub<ConstDecimals<30>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<12>
impl Sub<ConstDecimals<30>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<13>
impl Sub<ConstDecimals<30>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<14>
impl Sub<ConstDecimals<30>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<15>
impl Sub<ConstDecimals<30>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<16>
impl Sub<ConstDecimals<30>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<17>
impl Sub<ConstDecimals<30>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<18>
impl Sub<ConstDecimals<30>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<19>
impl Sub<ConstDecimals<30>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<20>
impl Sub<ConstDecimals<30>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<21>
impl Sub<ConstDecimals<30>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<22>
impl Sub<ConstDecimals<30>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<23>
impl Sub<ConstDecimals<30>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<24>
impl Sub<ConstDecimals<30>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<25>
impl Sub<ConstDecimals<30>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<26>
impl Sub<ConstDecimals<30>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<27>
impl Sub<ConstDecimals<30>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<28>
impl Sub<ConstDecimals<30>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<29>
impl Sub<ConstDecimals<30>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<31>
impl Sub<ConstDecimals<30>> for ConstDecimals<31>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<32>
impl Sub<ConstDecimals<30>> for ConstDecimals<32>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<33>
impl Sub<ConstDecimals<30>> for ConstDecimals<33>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<34>
impl Sub<ConstDecimals<30>> for ConstDecimals<34>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<35>
impl Sub<ConstDecimals<30>> for ConstDecimals<35>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<36>
impl Sub<ConstDecimals<30>> for ConstDecimals<36>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<37>
impl Sub<ConstDecimals<30>> for ConstDecimals<37>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<38>
impl Sub<ConstDecimals<30>> for ConstDecimals<38>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<39>
impl Sub<ConstDecimals<30>> for ConstDecimals<39>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<40>
impl Sub<ConstDecimals<30>> for ConstDecimals<40>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<41>
impl Sub<ConstDecimals<30>> for ConstDecimals<41>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<42>
impl Sub<ConstDecimals<30>> for ConstDecimals<42>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<43>
impl Sub<ConstDecimals<30>> for ConstDecimals<43>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<44>
impl Sub<ConstDecimals<30>> for ConstDecimals<44>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<45>
impl Sub<ConstDecimals<30>> for ConstDecimals<45>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<46>
impl Sub<ConstDecimals<30>> for ConstDecimals<46>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<47>
impl Sub<ConstDecimals<30>> for ConstDecimals<47>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<48>
impl Sub<ConstDecimals<30>> for ConstDecimals<48>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<49>
impl Sub<ConstDecimals<30>> for ConstDecimals<49>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<50>
impl Sub<ConstDecimals<30>> for ConstDecimals<50>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<51>
impl Sub<ConstDecimals<30>> for ConstDecimals<51>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<52>
impl Sub<ConstDecimals<30>> for ConstDecimals<52>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<53>
impl Sub<ConstDecimals<30>> for ConstDecimals<53>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<54>
impl Sub<ConstDecimals<30>> for ConstDecimals<54>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<55>
impl Sub<ConstDecimals<30>> for ConstDecimals<55>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<56>
impl Sub<ConstDecimals<30>> for ConstDecimals<56>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<57>
impl Sub<ConstDecimals<30>> for ConstDecimals<57>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<58>
impl Sub<ConstDecimals<30>> for ConstDecimals<58>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<59>
impl Sub<ConstDecimals<30>> for ConstDecimals<59>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<60>
impl Sub<ConstDecimals<30>> for ConstDecimals<60>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<61>
impl Sub<ConstDecimals<30>> for ConstDecimals<61>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<62>
impl Sub<ConstDecimals<30>> for ConstDecimals<62>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<63>
impl Sub<ConstDecimals<30>> for ConstDecimals<63>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<30>> for ConstDecimals<64>
impl Sub<ConstDecimals<30>> for ConstDecimals<64>
type Output = ConstDecimals<34>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<0>
impl Sub<ConstDecimals<31>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<1>
impl Sub<ConstDecimals<31>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<2>
impl Sub<ConstDecimals<31>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<3>
impl Sub<ConstDecimals<31>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<4>
impl Sub<ConstDecimals<31>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<5>
impl Sub<ConstDecimals<31>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<6>
impl Sub<ConstDecimals<31>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<7>
impl Sub<ConstDecimals<31>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<8>
impl Sub<ConstDecimals<31>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<9>
impl Sub<ConstDecimals<31>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<10>
impl Sub<ConstDecimals<31>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<11>
impl Sub<ConstDecimals<31>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<12>
impl Sub<ConstDecimals<31>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<13>
impl Sub<ConstDecimals<31>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<14>
impl Sub<ConstDecimals<31>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<15>
impl Sub<ConstDecimals<31>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<16>
impl Sub<ConstDecimals<31>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<17>
impl Sub<ConstDecimals<31>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<18>
impl Sub<ConstDecimals<31>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<19>
impl Sub<ConstDecimals<31>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<20>
impl Sub<ConstDecimals<31>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<21>
impl Sub<ConstDecimals<31>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<22>
impl Sub<ConstDecimals<31>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<23>
impl Sub<ConstDecimals<31>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<24>
impl Sub<ConstDecimals<31>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<25>
impl Sub<ConstDecimals<31>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<26>
impl Sub<ConstDecimals<31>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<27>
impl Sub<ConstDecimals<31>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<28>
impl Sub<ConstDecimals<31>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<29>
impl Sub<ConstDecimals<31>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<30>
impl Sub<ConstDecimals<31>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<32>
impl Sub<ConstDecimals<31>> for ConstDecimals<32>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<33>
impl Sub<ConstDecimals<31>> for ConstDecimals<33>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<34>
impl Sub<ConstDecimals<31>> for ConstDecimals<34>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<35>
impl Sub<ConstDecimals<31>> for ConstDecimals<35>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<36>
impl Sub<ConstDecimals<31>> for ConstDecimals<36>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<37>
impl Sub<ConstDecimals<31>> for ConstDecimals<37>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<38>
impl Sub<ConstDecimals<31>> for ConstDecimals<38>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<39>
impl Sub<ConstDecimals<31>> for ConstDecimals<39>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<40>
impl Sub<ConstDecimals<31>> for ConstDecimals<40>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<41>
impl Sub<ConstDecimals<31>> for ConstDecimals<41>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<42>
impl Sub<ConstDecimals<31>> for ConstDecimals<42>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<43>
impl Sub<ConstDecimals<31>> for ConstDecimals<43>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<44>
impl Sub<ConstDecimals<31>> for ConstDecimals<44>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<45>
impl Sub<ConstDecimals<31>> for ConstDecimals<45>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<46>
impl Sub<ConstDecimals<31>> for ConstDecimals<46>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<47>
impl Sub<ConstDecimals<31>> for ConstDecimals<47>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<48>
impl Sub<ConstDecimals<31>> for ConstDecimals<48>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<49>
impl Sub<ConstDecimals<31>> for ConstDecimals<49>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<50>
impl Sub<ConstDecimals<31>> for ConstDecimals<50>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<51>
impl Sub<ConstDecimals<31>> for ConstDecimals<51>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<52>
impl Sub<ConstDecimals<31>> for ConstDecimals<52>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<53>
impl Sub<ConstDecimals<31>> for ConstDecimals<53>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<54>
impl Sub<ConstDecimals<31>> for ConstDecimals<54>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<55>
impl Sub<ConstDecimals<31>> for ConstDecimals<55>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<56>
impl Sub<ConstDecimals<31>> for ConstDecimals<56>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<57>
impl Sub<ConstDecimals<31>> for ConstDecimals<57>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<58>
impl Sub<ConstDecimals<31>> for ConstDecimals<58>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<59>
impl Sub<ConstDecimals<31>> for ConstDecimals<59>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<60>
impl Sub<ConstDecimals<31>> for ConstDecimals<60>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<61>
impl Sub<ConstDecimals<31>> for ConstDecimals<61>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<62>
impl Sub<ConstDecimals<31>> for ConstDecimals<62>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<63>
impl Sub<ConstDecimals<31>> for ConstDecimals<63>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<31>> for ConstDecimals<64>
impl Sub<ConstDecimals<31>> for ConstDecimals<64>
type Output = ConstDecimals<33>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<0>
impl Sub<ConstDecimals<32>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<1>
impl Sub<ConstDecimals<32>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<2>
impl Sub<ConstDecimals<32>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<3>
impl Sub<ConstDecimals<32>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<4>
impl Sub<ConstDecimals<32>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<5>
impl Sub<ConstDecimals<32>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<6>
impl Sub<ConstDecimals<32>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<7>
impl Sub<ConstDecimals<32>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<8>
impl Sub<ConstDecimals<32>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<9>
impl Sub<ConstDecimals<32>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<10>
impl Sub<ConstDecimals<32>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<11>
impl Sub<ConstDecimals<32>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<12>
impl Sub<ConstDecimals<32>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<13>
impl Sub<ConstDecimals<32>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<14>
impl Sub<ConstDecimals<32>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<15>
impl Sub<ConstDecimals<32>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<16>
impl Sub<ConstDecimals<32>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<17>
impl Sub<ConstDecimals<32>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<18>
impl Sub<ConstDecimals<32>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<19>
impl Sub<ConstDecimals<32>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<20>
impl Sub<ConstDecimals<32>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<21>
impl Sub<ConstDecimals<32>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<22>
impl Sub<ConstDecimals<32>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<23>
impl Sub<ConstDecimals<32>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<24>
impl Sub<ConstDecimals<32>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<25>
impl Sub<ConstDecimals<32>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<26>
impl Sub<ConstDecimals<32>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<27>
impl Sub<ConstDecimals<32>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<28>
impl Sub<ConstDecimals<32>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<29>
impl Sub<ConstDecimals<32>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<30>
impl Sub<ConstDecimals<32>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<31>
impl Sub<ConstDecimals<32>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<33>
impl Sub<ConstDecimals<32>> for ConstDecimals<33>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<34>
impl Sub<ConstDecimals<32>> for ConstDecimals<34>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<35>
impl Sub<ConstDecimals<32>> for ConstDecimals<35>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<36>
impl Sub<ConstDecimals<32>> for ConstDecimals<36>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<37>
impl Sub<ConstDecimals<32>> for ConstDecimals<37>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<38>
impl Sub<ConstDecimals<32>> for ConstDecimals<38>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<39>
impl Sub<ConstDecimals<32>> for ConstDecimals<39>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<40>
impl Sub<ConstDecimals<32>> for ConstDecimals<40>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<41>
impl Sub<ConstDecimals<32>> for ConstDecimals<41>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<42>
impl Sub<ConstDecimals<32>> for ConstDecimals<42>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<43>
impl Sub<ConstDecimals<32>> for ConstDecimals<43>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<44>
impl Sub<ConstDecimals<32>> for ConstDecimals<44>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<45>
impl Sub<ConstDecimals<32>> for ConstDecimals<45>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<46>
impl Sub<ConstDecimals<32>> for ConstDecimals<46>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<47>
impl Sub<ConstDecimals<32>> for ConstDecimals<47>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<48>
impl Sub<ConstDecimals<32>> for ConstDecimals<48>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<49>
impl Sub<ConstDecimals<32>> for ConstDecimals<49>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<50>
impl Sub<ConstDecimals<32>> for ConstDecimals<50>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<51>
impl Sub<ConstDecimals<32>> for ConstDecimals<51>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<52>
impl Sub<ConstDecimals<32>> for ConstDecimals<52>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<53>
impl Sub<ConstDecimals<32>> for ConstDecimals<53>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<54>
impl Sub<ConstDecimals<32>> for ConstDecimals<54>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<55>
impl Sub<ConstDecimals<32>> for ConstDecimals<55>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<56>
impl Sub<ConstDecimals<32>> for ConstDecimals<56>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<57>
impl Sub<ConstDecimals<32>> for ConstDecimals<57>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<58>
impl Sub<ConstDecimals<32>> for ConstDecimals<58>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<59>
impl Sub<ConstDecimals<32>> for ConstDecimals<59>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<60>
impl Sub<ConstDecimals<32>> for ConstDecimals<60>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<61>
impl Sub<ConstDecimals<32>> for ConstDecimals<61>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<62>
impl Sub<ConstDecimals<32>> for ConstDecimals<62>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<63>
impl Sub<ConstDecimals<32>> for ConstDecimals<63>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<32>> for ConstDecimals<64>
impl Sub<ConstDecimals<32>> for ConstDecimals<64>
type Output = ConstDecimals<32>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<0>
impl Sub<ConstDecimals<33>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<1>
impl Sub<ConstDecimals<33>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<2>
impl Sub<ConstDecimals<33>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<3>
impl Sub<ConstDecimals<33>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<4>
impl Sub<ConstDecimals<33>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<5>
impl Sub<ConstDecimals<33>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<6>
impl Sub<ConstDecimals<33>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<7>
impl Sub<ConstDecimals<33>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<8>
impl Sub<ConstDecimals<33>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<9>
impl Sub<ConstDecimals<33>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<10>
impl Sub<ConstDecimals<33>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<11>
impl Sub<ConstDecimals<33>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<12>
impl Sub<ConstDecimals<33>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<13>
impl Sub<ConstDecimals<33>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<14>
impl Sub<ConstDecimals<33>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<15>
impl Sub<ConstDecimals<33>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<16>
impl Sub<ConstDecimals<33>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<17>
impl Sub<ConstDecimals<33>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<18>
impl Sub<ConstDecimals<33>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<19>
impl Sub<ConstDecimals<33>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<20>
impl Sub<ConstDecimals<33>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<21>
impl Sub<ConstDecimals<33>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<22>
impl Sub<ConstDecimals<33>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<23>
impl Sub<ConstDecimals<33>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<24>
impl Sub<ConstDecimals<33>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<25>
impl Sub<ConstDecimals<33>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<26>
impl Sub<ConstDecimals<33>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<27>
impl Sub<ConstDecimals<33>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<28>
impl Sub<ConstDecimals<33>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<29>
impl Sub<ConstDecimals<33>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<30>
impl Sub<ConstDecimals<33>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<31>
impl Sub<ConstDecimals<33>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<32>
impl Sub<ConstDecimals<33>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<34>
impl Sub<ConstDecimals<33>> for ConstDecimals<34>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<35>
impl Sub<ConstDecimals<33>> for ConstDecimals<35>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<36>
impl Sub<ConstDecimals<33>> for ConstDecimals<36>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<37>
impl Sub<ConstDecimals<33>> for ConstDecimals<37>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<38>
impl Sub<ConstDecimals<33>> for ConstDecimals<38>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<39>
impl Sub<ConstDecimals<33>> for ConstDecimals<39>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<40>
impl Sub<ConstDecimals<33>> for ConstDecimals<40>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<41>
impl Sub<ConstDecimals<33>> for ConstDecimals<41>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<42>
impl Sub<ConstDecimals<33>> for ConstDecimals<42>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<43>
impl Sub<ConstDecimals<33>> for ConstDecimals<43>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<44>
impl Sub<ConstDecimals<33>> for ConstDecimals<44>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<45>
impl Sub<ConstDecimals<33>> for ConstDecimals<45>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<46>
impl Sub<ConstDecimals<33>> for ConstDecimals<46>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<47>
impl Sub<ConstDecimals<33>> for ConstDecimals<47>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<48>
impl Sub<ConstDecimals<33>> for ConstDecimals<48>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<49>
impl Sub<ConstDecimals<33>> for ConstDecimals<49>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<50>
impl Sub<ConstDecimals<33>> for ConstDecimals<50>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<51>
impl Sub<ConstDecimals<33>> for ConstDecimals<51>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<52>
impl Sub<ConstDecimals<33>> for ConstDecimals<52>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<53>
impl Sub<ConstDecimals<33>> for ConstDecimals<53>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<54>
impl Sub<ConstDecimals<33>> for ConstDecimals<54>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<55>
impl Sub<ConstDecimals<33>> for ConstDecimals<55>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<56>
impl Sub<ConstDecimals<33>> for ConstDecimals<56>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<57>
impl Sub<ConstDecimals<33>> for ConstDecimals<57>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<58>
impl Sub<ConstDecimals<33>> for ConstDecimals<58>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<59>
impl Sub<ConstDecimals<33>> for ConstDecimals<59>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<60>
impl Sub<ConstDecimals<33>> for ConstDecimals<60>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<61>
impl Sub<ConstDecimals<33>> for ConstDecimals<61>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<62>
impl Sub<ConstDecimals<33>> for ConstDecimals<62>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<63>
impl Sub<ConstDecimals<33>> for ConstDecimals<63>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<33>> for ConstDecimals<64>
impl Sub<ConstDecimals<33>> for ConstDecimals<64>
type Output = ConstDecimals<31>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<0>
impl Sub<ConstDecimals<34>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<1>
impl Sub<ConstDecimals<34>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<2>
impl Sub<ConstDecimals<34>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<3>
impl Sub<ConstDecimals<34>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<4>
impl Sub<ConstDecimals<34>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<5>
impl Sub<ConstDecimals<34>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<6>
impl Sub<ConstDecimals<34>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<7>
impl Sub<ConstDecimals<34>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<8>
impl Sub<ConstDecimals<34>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<9>
impl Sub<ConstDecimals<34>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<10>
impl Sub<ConstDecimals<34>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<11>
impl Sub<ConstDecimals<34>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<12>
impl Sub<ConstDecimals<34>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<13>
impl Sub<ConstDecimals<34>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<14>
impl Sub<ConstDecimals<34>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<15>
impl Sub<ConstDecimals<34>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<16>
impl Sub<ConstDecimals<34>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<17>
impl Sub<ConstDecimals<34>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<18>
impl Sub<ConstDecimals<34>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<19>
impl Sub<ConstDecimals<34>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<20>
impl Sub<ConstDecimals<34>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<21>
impl Sub<ConstDecimals<34>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<22>
impl Sub<ConstDecimals<34>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<23>
impl Sub<ConstDecimals<34>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<24>
impl Sub<ConstDecimals<34>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<25>
impl Sub<ConstDecimals<34>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<26>
impl Sub<ConstDecimals<34>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<27>
impl Sub<ConstDecimals<34>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<28>
impl Sub<ConstDecimals<34>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<29>
impl Sub<ConstDecimals<34>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<30>
impl Sub<ConstDecimals<34>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<31>
impl Sub<ConstDecimals<34>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<32>
impl Sub<ConstDecimals<34>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<33>
impl Sub<ConstDecimals<34>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<35>
impl Sub<ConstDecimals<34>> for ConstDecimals<35>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<36>
impl Sub<ConstDecimals<34>> for ConstDecimals<36>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<37>
impl Sub<ConstDecimals<34>> for ConstDecimals<37>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<38>
impl Sub<ConstDecimals<34>> for ConstDecimals<38>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<39>
impl Sub<ConstDecimals<34>> for ConstDecimals<39>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<40>
impl Sub<ConstDecimals<34>> for ConstDecimals<40>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<41>
impl Sub<ConstDecimals<34>> for ConstDecimals<41>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<42>
impl Sub<ConstDecimals<34>> for ConstDecimals<42>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<43>
impl Sub<ConstDecimals<34>> for ConstDecimals<43>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<44>
impl Sub<ConstDecimals<34>> for ConstDecimals<44>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<45>
impl Sub<ConstDecimals<34>> for ConstDecimals<45>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<46>
impl Sub<ConstDecimals<34>> for ConstDecimals<46>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<47>
impl Sub<ConstDecimals<34>> for ConstDecimals<47>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<48>
impl Sub<ConstDecimals<34>> for ConstDecimals<48>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<49>
impl Sub<ConstDecimals<34>> for ConstDecimals<49>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<50>
impl Sub<ConstDecimals<34>> for ConstDecimals<50>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<51>
impl Sub<ConstDecimals<34>> for ConstDecimals<51>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<52>
impl Sub<ConstDecimals<34>> for ConstDecimals<52>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<53>
impl Sub<ConstDecimals<34>> for ConstDecimals<53>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<54>
impl Sub<ConstDecimals<34>> for ConstDecimals<54>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<55>
impl Sub<ConstDecimals<34>> for ConstDecimals<55>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<56>
impl Sub<ConstDecimals<34>> for ConstDecimals<56>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<57>
impl Sub<ConstDecimals<34>> for ConstDecimals<57>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<58>
impl Sub<ConstDecimals<34>> for ConstDecimals<58>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<59>
impl Sub<ConstDecimals<34>> for ConstDecimals<59>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<60>
impl Sub<ConstDecimals<34>> for ConstDecimals<60>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<61>
impl Sub<ConstDecimals<34>> for ConstDecimals<61>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<62>
impl Sub<ConstDecimals<34>> for ConstDecimals<62>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<63>
impl Sub<ConstDecimals<34>> for ConstDecimals<63>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<34>> for ConstDecimals<64>
impl Sub<ConstDecimals<34>> for ConstDecimals<64>
type Output = ConstDecimals<30>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<0>
impl Sub<ConstDecimals<35>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<1>
impl Sub<ConstDecimals<35>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<2>
impl Sub<ConstDecimals<35>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<3>
impl Sub<ConstDecimals<35>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<4>
impl Sub<ConstDecimals<35>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<5>
impl Sub<ConstDecimals<35>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<6>
impl Sub<ConstDecimals<35>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<7>
impl Sub<ConstDecimals<35>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<8>
impl Sub<ConstDecimals<35>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<9>
impl Sub<ConstDecimals<35>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<10>
impl Sub<ConstDecimals<35>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<11>
impl Sub<ConstDecimals<35>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<12>
impl Sub<ConstDecimals<35>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<13>
impl Sub<ConstDecimals<35>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<14>
impl Sub<ConstDecimals<35>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<15>
impl Sub<ConstDecimals<35>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<16>
impl Sub<ConstDecimals<35>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<17>
impl Sub<ConstDecimals<35>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<18>
impl Sub<ConstDecimals<35>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<19>
impl Sub<ConstDecimals<35>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<20>
impl Sub<ConstDecimals<35>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<21>
impl Sub<ConstDecimals<35>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<22>
impl Sub<ConstDecimals<35>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<23>
impl Sub<ConstDecimals<35>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<24>
impl Sub<ConstDecimals<35>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<25>
impl Sub<ConstDecimals<35>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<26>
impl Sub<ConstDecimals<35>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<27>
impl Sub<ConstDecimals<35>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<28>
impl Sub<ConstDecimals<35>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<29>
impl Sub<ConstDecimals<35>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<30>
impl Sub<ConstDecimals<35>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<31>
impl Sub<ConstDecimals<35>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<32>
impl Sub<ConstDecimals<35>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<33>
impl Sub<ConstDecimals<35>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<34>
impl Sub<ConstDecimals<35>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<36>
impl Sub<ConstDecimals<35>> for ConstDecimals<36>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<37>
impl Sub<ConstDecimals<35>> for ConstDecimals<37>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<38>
impl Sub<ConstDecimals<35>> for ConstDecimals<38>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<39>
impl Sub<ConstDecimals<35>> for ConstDecimals<39>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<40>
impl Sub<ConstDecimals<35>> for ConstDecimals<40>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<41>
impl Sub<ConstDecimals<35>> for ConstDecimals<41>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<42>
impl Sub<ConstDecimals<35>> for ConstDecimals<42>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<43>
impl Sub<ConstDecimals<35>> for ConstDecimals<43>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<44>
impl Sub<ConstDecimals<35>> for ConstDecimals<44>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<45>
impl Sub<ConstDecimals<35>> for ConstDecimals<45>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<46>
impl Sub<ConstDecimals<35>> for ConstDecimals<46>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<47>
impl Sub<ConstDecimals<35>> for ConstDecimals<47>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<48>
impl Sub<ConstDecimals<35>> for ConstDecimals<48>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<49>
impl Sub<ConstDecimals<35>> for ConstDecimals<49>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<50>
impl Sub<ConstDecimals<35>> for ConstDecimals<50>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<51>
impl Sub<ConstDecimals<35>> for ConstDecimals<51>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<52>
impl Sub<ConstDecimals<35>> for ConstDecimals<52>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<53>
impl Sub<ConstDecimals<35>> for ConstDecimals<53>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<54>
impl Sub<ConstDecimals<35>> for ConstDecimals<54>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<55>
impl Sub<ConstDecimals<35>> for ConstDecimals<55>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<56>
impl Sub<ConstDecimals<35>> for ConstDecimals<56>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<57>
impl Sub<ConstDecimals<35>> for ConstDecimals<57>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<58>
impl Sub<ConstDecimals<35>> for ConstDecimals<58>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<59>
impl Sub<ConstDecimals<35>> for ConstDecimals<59>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<60>
impl Sub<ConstDecimals<35>> for ConstDecimals<60>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<61>
impl Sub<ConstDecimals<35>> for ConstDecimals<61>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<62>
impl Sub<ConstDecimals<35>> for ConstDecimals<62>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<63>
impl Sub<ConstDecimals<35>> for ConstDecimals<63>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<35>> for ConstDecimals<64>
impl Sub<ConstDecimals<35>> for ConstDecimals<64>
type Output = ConstDecimals<29>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<0>
impl Sub<ConstDecimals<36>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<1>
impl Sub<ConstDecimals<36>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<2>
impl Sub<ConstDecimals<36>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<3>
impl Sub<ConstDecimals<36>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<4>
impl Sub<ConstDecimals<36>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<5>
impl Sub<ConstDecimals<36>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<6>
impl Sub<ConstDecimals<36>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<7>
impl Sub<ConstDecimals<36>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<8>
impl Sub<ConstDecimals<36>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<9>
impl Sub<ConstDecimals<36>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<10>
impl Sub<ConstDecimals<36>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<11>
impl Sub<ConstDecimals<36>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<12>
impl Sub<ConstDecimals<36>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<13>
impl Sub<ConstDecimals<36>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<14>
impl Sub<ConstDecimals<36>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<15>
impl Sub<ConstDecimals<36>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<16>
impl Sub<ConstDecimals<36>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<17>
impl Sub<ConstDecimals<36>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<18>
impl Sub<ConstDecimals<36>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<19>
impl Sub<ConstDecimals<36>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<20>
impl Sub<ConstDecimals<36>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<21>
impl Sub<ConstDecimals<36>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<22>
impl Sub<ConstDecimals<36>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<23>
impl Sub<ConstDecimals<36>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<24>
impl Sub<ConstDecimals<36>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<25>
impl Sub<ConstDecimals<36>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<26>
impl Sub<ConstDecimals<36>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<27>
impl Sub<ConstDecimals<36>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<28>
impl Sub<ConstDecimals<36>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<29>
impl Sub<ConstDecimals<36>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<30>
impl Sub<ConstDecimals<36>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<31>
impl Sub<ConstDecimals<36>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<32>
impl Sub<ConstDecimals<36>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<33>
impl Sub<ConstDecimals<36>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<34>
impl Sub<ConstDecimals<36>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<35>
impl Sub<ConstDecimals<36>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<37>
impl Sub<ConstDecimals<36>> for ConstDecimals<37>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<38>
impl Sub<ConstDecimals<36>> for ConstDecimals<38>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<39>
impl Sub<ConstDecimals<36>> for ConstDecimals<39>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<40>
impl Sub<ConstDecimals<36>> for ConstDecimals<40>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<41>
impl Sub<ConstDecimals<36>> for ConstDecimals<41>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<42>
impl Sub<ConstDecimals<36>> for ConstDecimals<42>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<43>
impl Sub<ConstDecimals<36>> for ConstDecimals<43>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<44>
impl Sub<ConstDecimals<36>> for ConstDecimals<44>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<45>
impl Sub<ConstDecimals<36>> for ConstDecimals<45>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<46>
impl Sub<ConstDecimals<36>> for ConstDecimals<46>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<47>
impl Sub<ConstDecimals<36>> for ConstDecimals<47>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<48>
impl Sub<ConstDecimals<36>> for ConstDecimals<48>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<49>
impl Sub<ConstDecimals<36>> for ConstDecimals<49>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<50>
impl Sub<ConstDecimals<36>> for ConstDecimals<50>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<51>
impl Sub<ConstDecimals<36>> for ConstDecimals<51>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<52>
impl Sub<ConstDecimals<36>> for ConstDecimals<52>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<53>
impl Sub<ConstDecimals<36>> for ConstDecimals<53>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<54>
impl Sub<ConstDecimals<36>> for ConstDecimals<54>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<55>
impl Sub<ConstDecimals<36>> for ConstDecimals<55>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<56>
impl Sub<ConstDecimals<36>> for ConstDecimals<56>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<57>
impl Sub<ConstDecimals<36>> for ConstDecimals<57>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<58>
impl Sub<ConstDecimals<36>> for ConstDecimals<58>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<59>
impl Sub<ConstDecimals<36>> for ConstDecimals<59>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<60>
impl Sub<ConstDecimals<36>> for ConstDecimals<60>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<61>
impl Sub<ConstDecimals<36>> for ConstDecimals<61>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<62>
impl Sub<ConstDecimals<36>> for ConstDecimals<62>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<63>
impl Sub<ConstDecimals<36>> for ConstDecimals<63>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<36>> for ConstDecimals<64>
impl Sub<ConstDecimals<36>> for ConstDecimals<64>
type Output = ConstDecimals<28>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<0>
impl Sub<ConstDecimals<37>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<1>
impl Sub<ConstDecimals<37>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<2>
impl Sub<ConstDecimals<37>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<3>
impl Sub<ConstDecimals<37>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<4>
impl Sub<ConstDecimals<37>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<5>
impl Sub<ConstDecimals<37>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<6>
impl Sub<ConstDecimals<37>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<7>
impl Sub<ConstDecimals<37>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<8>
impl Sub<ConstDecimals<37>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<9>
impl Sub<ConstDecimals<37>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<10>
impl Sub<ConstDecimals<37>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<11>
impl Sub<ConstDecimals<37>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<12>
impl Sub<ConstDecimals<37>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<13>
impl Sub<ConstDecimals<37>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<14>
impl Sub<ConstDecimals<37>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<15>
impl Sub<ConstDecimals<37>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<16>
impl Sub<ConstDecimals<37>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<17>
impl Sub<ConstDecimals<37>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<18>
impl Sub<ConstDecimals<37>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<19>
impl Sub<ConstDecimals<37>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<20>
impl Sub<ConstDecimals<37>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<21>
impl Sub<ConstDecimals<37>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<22>
impl Sub<ConstDecimals<37>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<23>
impl Sub<ConstDecimals<37>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<24>
impl Sub<ConstDecimals<37>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<25>
impl Sub<ConstDecimals<37>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<26>
impl Sub<ConstDecimals<37>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<27>
impl Sub<ConstDecimals<37>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<28>
impl Sub<ConstDecimals<37>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<29>
impl Sub<ConstDecimals<37>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<30>
impl Sub<ConstDecimals<37>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<31>
impl Sub<ConstDecimals<37>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<32>
impl Sub<ConstDecimals<37>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<33>
impl Sub<ConstDecimals<37>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<34>
impl Sub<ConstDecimals<37>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<35>
impl Sub<ConstDecimals<37>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<36>
impl Sub<ConstDecimals<37>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<38>
impl Sub<ConstDecimals<37>> for ConstDecimals<38>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<39>
impl Sub<ConstDecimals<37>> for ConstDecimals<39>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<40>
impl Sub<ConstDecimals<37>> for ConstDecimals<40>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<41>
impl Sub<ConstDecimals<37>> for ConstDecimals<41>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<42>
impl Sub<ConstDecimals<37>> for ConstDecimals<42>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<43>
impl Sub<ConstDecimals<37>> for ConstDecimals<43>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<44>
impl Sub<ConstDecimals<37>> for ConstDecimals<44>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<45>
impl Sub<ConstDecimals<37>> for ConstDecimals<45>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<46>
impl Sub<ConstDecimals<37>> for ConstDecimals<46>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<47>
impl Sub<ConstDecimals<37>> for ConstDecimals<47>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<48>
impl Sub<ConstDecimals<37>> for ConstDecimals<48>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<49>
impl Sub<ConstDecimals<37>> for ConstDecimals<49>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<50>
impl Sub<ConstDecimals<37>> for ConstDecimals<50>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<51>
impl Sub<ConstDecimals<37>> for ConstDecimals<51>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<52>
impl Sub<ConstDecimals<37>> for ConstDecimals<52>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<53>
impl Sub<ConstDecimals<37>> for ConstDecimals<53>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<54>
impl Sub<ConstDecimals<37>> for ConstDecimals<54>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<55>
impl Sub<ConstDecimals<37>> for ConstDecimals<55>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<56>
impl Sub<ConstDecimals<37>> for ConstDecimals<56>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<57>
impl Sub<ConstDecimals<37>> for ConstDecimals<57>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<58>
impl Sub<ConstDecimals<37>> for ConstDecimals<58>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<59>
impl Sub<ConstDecimals<37>> for ConstDecimals<59>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<60>
impl Sub<ConstDecimals<37>> for ConstDecimals<60>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<61>
impl Sub<ConstDecimals<37>> for ConstDecimals<61>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<62>
impl Sub<ConstDecimals<37>> for ConstDecimals<62>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<63>
impl Sub<ConstDecimals<37>> for ConstDecimals<63>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<37>> for ConstDecimals<64>
impl Sub<ConstDecimals<37>> for ConstDecimals<64>
type Output = ConstDecimals<27>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<0>
impl Sub<ConstDecimals<38>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<1>
impl Sub<ConstDecimals<38>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<2>
impl Sub<ConstDecimals<38>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<3>
impl Sub<ConstDecimals<38>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<4>
impl Sub<ConstDecimals<38>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<5>
impl Sub<ConstDecimals<38>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<6>
impl Sub<ConstDecimals<38>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<7>
impl Sub<ConstDecimals<38>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<8>
impl Sub<ConstDecimals<38>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<9>
impl Sub<ConstDecimals<38>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<10>
impl Sub<ConstDecimals<38>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<11>
impl Sub<ConstDecimals<38>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<12>
impl Sub<ConstDecimals<38>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<13>
impl Sub<ConstDecimals<38>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<14>
impl Sub<ConstDecimals<38>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<15>
impl Sub<ConstDecimals<38>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<16>
impl Sub<ConstDecimals<38>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<17>
impl Sub<ConstDecimals<38>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<18>
impl Sub<ConstDecimals<38>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<19>
impl Sub<ConstDecimals<38>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<20>
impl Sub<ConstDecimals<38>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<21>
impl Sub<ConstDecimals<38>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<22>
impl Sub<ConstDecimals<38>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<23>
impl Sub<ConstDecimals<38>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<24>
impl Sub<ConstDecimals<38>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<25>
impl Sub<ConstDecimals<38>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<26>
impl Sub<ConstDecimals<38>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<27>
impl Sub<ConstDecimals<38>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<28>
impl Sub<ConstDecimals<38>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<29>
impl Sub<ConstDecimals<38>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<30>
impl Sub<ConstDecimals<38>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<31>
impl Sub<ConstDecimals<38>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<32>
impl Sub<ConstDecimals<38>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<33>
impl Sub<ConstDecimals<38>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<34>
impl Sub<ConstDecimals<38>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<35>
impl Sub<ConstDecimals<38>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<36>
impl Sub<ConstDecimals<38>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<37>
impl Sub<ConstDecimals<38>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<39>
impl Sub<ConstDecimals<38>> for ConstDecimals<39>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<40>
impl Sub<ConstDecimals<38>> for ConstDecimals<40>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<41>
impl Sub<ConstDecimals<38>> for ConstDecimals<41>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<42>
impl Sub<ConstDecimals<38>> for ConstDecimals<42>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<43>
impl Sub<ConstDecimals<38>> for ConstDecimals<43>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<44>
impl Sub<ConstDecimals<38>> for ConstDecimals<44>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<45>
impl Sub<ConstDecimals<38>> for ConstDecimals<45>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<46>
impl Sub<ConstDecimals<38>> for ConstDecimals<46>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<47>
impl Sub<ConstDecimals<38>> for ConstDecimals<47>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<48>
impl Sub<ConstDecimals<38>> for ConstDecimals<48>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<49>
impl Sub<ConstDecimals<38>> for ConstDecimals<49>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<50>
impl Sub<ConstDecimals<38>> for ConstDecimals<50>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<51>
impl Sub<ConstDecimals<38>> for ConstDecimals<51>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<52>
impl Sub<ConstDecimals<38>> for ConstDecimals<52>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<53>
impl Sub<ConstDecimals<38>> for ConstDecimals<53>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<54>
impl Sub<ConstDecimals<38>> for ConstDecimals<54>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<55>
impl Sub<ConstDecimals<38>> for ConstDecimals<55>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<56>
impl Sub<ConstDecimals<38>> for ConstDecimals<56>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<57>
impl Sub<ConstDecimals<38>> for ConstDecimals<57>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<58>
impl Sub<ConstDecimals<38>> for ConstDecimals<58>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<59>
impl Sub<ConstDecimals<38>> for ConstDecimals<59>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<60>
impl Sub<ConstDecimals<38>> for ConstDecimals<60>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<61>
impl Sub<ConstDecimals<38>> for ConstDecimals<61>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<62>
impl Sub<ConstDecimals<38>> for ConstDecimals<62>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<63>
impl Sub<ConstDecimals<38>> for ConstDecimals<63>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<38>> for ConstDecimals<64>
impl Sub<ConstDecimals<38>> for ConstDecimals<64>
type Output = ConstDecimals<26>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<0>
impl Sub<ConstDecimals<39>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<1>
impl Sub<ConstDecimals<39>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<2>
impl Sub<ConstDecimals<39>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<3>
impl Sub<ConstDecimals<39>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<4>
impl Sub<ConstDecimals<39>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<5>
impl Sub<ConstDecimals<39>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<6>
impl Sub<ConstDecimals<39>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<7>
impl Sub<ConstDecimals<39>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<8>
impl Sub<ConstDecimals<39>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<9>
impl Sub<ConstDecimals<39>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<10>
impl Sub<ConstDecimals<39>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<11>
impl Sub<ConstDecimals<39>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<12>
impl Sub<ConstDecimals<39>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<13>
impl Sub<ConstDecimals<39>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<14>
impl Sub<ConstDecimals<39>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<15>
impl Sub<ConstDecimals<39>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<16>
impl Sub<ConstDecimals<39>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<17>
impl Sub<ConstDecimals<39>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<18>
impl Sub<ConstDecimals<39>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<19>
impl Sub<ConstDecimals<39>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<20>
impl Sub<ConstDecimals<39>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<21>
impl Sub<ConstDecimals<39>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<22>
impl Sub<ConstDecimals<39>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<23>
impl Sub<ConstDecimals<39>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<24>
impl Sub<ConstDecimals<39>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<25>
impl Sub<ConstDecimals<39>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<26>
impl Sub<ConstDecimals<39>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<27>
impl Sub<ConstDecimals<39>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<28>
impl Sub<ConstDecimals<39>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<29>
impl Sub<ConstDecimals<39>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<30>
impl Sub<ConstDecimals<39>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<31>
impl Sub<ConstDecimals<39>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<32>
impl Sub<ConstDecimals<39>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<33>
impl Sub<ConstDecimals<39>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<34>
impl Sub<ConstDecimals<39>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<35>
impl Sub<ConstDecimals<39>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<36>
impl Sub<ConstDecimals<39>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<37>
impl Sub<ConstDecimals<39>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<38>
impl Sub<ConstDecimals<39>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<40>
impl Sub<ConstDecimals<39>> for ConstDecimals<40>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<41>
impl Sub<ConstDecimals<39>> for ConstDecimals<41>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<42>
impl Sub<ConstDecimals<39>> for ConstDecimals<42>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<43>
impl Sub<ConstDecimals<39>> for ConstDecimals<43>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<44>
impl Sub<ConstDecimals<39>> for ConstDecimals<44>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<45>
impl Sub<ConstDecimals<39>> for ConstDecimals<45>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<46>
impl Sub<ConstDecimals<39>> for ConstDecimals<46>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<47>
impl Sub<ConstDecimals<39>> for ConstDecimals<47>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<48>
impl Sub<ConstDecimals<39>> for ConstDecimals<48>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<49>
impl Sub<ConstDecimals<39>> for ConstDecimals<49>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<50>
impl Sub<ConstDecimals<39>> for ConstDecimals<50>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<51>
impl Sub<ConstDecimals<39>> for ConstDecimals<51>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<52>
impl Sub<ConstDecimals<39>> for ConstDecimals<52>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<53>
impl Sub<ConstDecimals<39>> for ConstDecimals<53>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<54>
impl Sub<ConstDecimals<39>> for ConstDecimals<54>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<55>
impl Sub<ConstDecimals<39>> for ConstDecimals<55>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<56>
impl Sub<ConstDecimals<39>> for ConstDecimals<56>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<57>
impl Sub<ConstDecimals<39>> for ConstDecimals<57>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<58>
impl Sub<ConstDecimals<39>> for ConstDecimals<58>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<59>
impl Sub<ConstDecimals<39>> for ConstDecimals<59>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<60>
impl Sub<ConstDecimals<39>> for ConstDecimals<60>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<61>
impl Sub<ConstDecimals<39>> for ConstDecimals<61>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<62>
impl Sub<ConstDecimals<39>> for ConstDecimals<62>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<63>
impl Sub<ConstDecimals<39>> for ConstDecimals<63>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<39>> for ConstDecimals<64>
impl Sub<ConstDecimals<39>> for ConstDecimals<64>
type Output = ConstDecimals<25>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<0>
impl Sub<ConstDecimals<40>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<1>
impl Sub<ConstDecimals<40>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<2>
impl Sub<ConstDecimals<40>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<3>
impl Sub<ConstDecimals<40>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<4>
impl Sub<ConstDecimals<40>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<5>
impl Sub<ConstDecimals<40>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<6>
impl Sub<ConstDecimals<40>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<7>
impl Sub<ConstDecimals<40>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<8>
impl Sub<ConstDecimals<40>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<9>
impl Sub<ConstDecimals<40>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<10>
impl Sub<ConstDecimals<40>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<11>
impl Sub<ConstDecimals<40>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<12>
impl Sub<ConstDecimals<40>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<13>
impl Sub<ConstDecimals<40>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<14>
impl Sub<ConstDecimals<40>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<15>
impl Sub<ConstDecimals<40>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<16>
impl Sub<ConstDecimals<40>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<17>
impl Sub<ConstDecimals<40>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<18>
impl Sub<ConstDecimals<40>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<19>
impl Sub<ConstDecimals<40>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<20>
impl Sub<ConstDecimals<40>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<21>
impl Sub<ConstDecimals<40>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<22>
impl Sub<ConstDecimals<40>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<23>
impl Sub<ConstDecimals<40>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<24>
impl Sub<ConstDecimals<40>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<25>
impl Sub<ConstDecimals<40>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<26>
impl Sub<ConstDecimals<40>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<27>
impl Sub<ConstDecimals<40>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<28>
impl Sub<ConstDecimals<40>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<29>
impl Sub<ConstDecimals<40>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<30>
impl Sub<ConstDecimals<40>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<31>
impl Sub<ConstDecimals<40>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<32>
impl Sub<ConstDecimals<40>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<33>
impl Sub<ConstDecimals<40>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<34>
impl Sub<ConstDecimals<40>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<35>
impl Sub<ConstDecimals<40>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<36>
impl Sub<ConstDecimals<40>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<37>
impl Sub<ConstDecimals<40>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<38>
impl Sub<ConstDecimals<40>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<39>
impl Sub<ConstDecimals<40>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<41>
impl Sub<ConstDecimals<40>> for ConstDecimals<41>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<42>
impl Sub<ConstDecimals<40>> for ConstDecimals<42>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<43>
impl Sub<ConstDecimals<40>> for ConstDecimals<43>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<44>
impl Sub<ConstDecimals<40>> for ConstDecimals<44>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<45>
impl Sub<ConstDecimals<40>> for ConstDecimals<45>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<46>
impl Sub<ConstDecimals<40>> for ConstDecimals<46>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<47>
impl Sub<ConstDecimals<40>> for ConstDecimals<47>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<48>
impl Sub<ConstDecimals<40>> for ConstDecimals<48>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<49>
impl Sub<ConstDecimals<40>> for ConstDecimals<49>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<50>
impl Sub<ConstDecimals<40>> for ConstDecimals<50>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<51>
impl Sub<ConstDecimals<40>> for ConstDecimals<51>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<52>
impl Sub<ConstDecimals<40>> for ConstDecimals<52>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<53>
impl Sub<ConstDecimals<40>> for ConstDecimals<53>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<54>
impl Sub<ConstDecimals<40>> for ConstDecimals<54>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<55>
impl Sub<ConstDecimals<40>> for ConstDecimals<55>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<56>
impl Sub<ConstDecimals<40>> for ConstDecimals<56>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<57>
impl Sub<ConstDecimals<40>> for ConstDecimals<57>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<58>
impl Sub<ConstDecimals<40>> for ConstDecimals<58>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<59>
impl Sub<ConstDecimals<40>> for ConstDecimals<59>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<60>
impl Sub<ConstDecimals<40>> for ConstDecimals<60>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<61>
impl Sub<ConstDecimals<40>> for ConstDecimals<61>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<62>
impl Sub<ConstDecimals<40>> for ConstDecimals<62>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<63>
impl Sub<ConstDecimals<40>> for ConstDecimals<63>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<40>> for ConstDecimals<64>
impl Sub<ConstDecimals<40>> for ConstDecimals<64>
type Output = ConstDecimals<24>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<0>
impl Sub<ConstDecimals<41>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<1>
impl Sub<ConstDecimals<41>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<2>
impl Sub<ConstDecimals<41>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<3>
impl Sub<ConstDecimals<41>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<4>
impl Sub<ConstDecimals<41>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<5>
impl Sub<ConstDecimals<41>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<6>
impl Sub<ConstDecimals<41>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<7>
impl Sub<ConstDecimals<41>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<8>
impl Sub<ConstDecimals<41>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<9>
impl Sub<ConstDecimals<41>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<10>
impl Sub<ConstDecimals<41>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<11>
impl Sub<ConstDecimals<41>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<12>
impl Sub<ConstDecimals<41>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<13>
impl Sub<ConstDecimals<41>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<14>
impl Sub<ConstDecimals<41>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<15>
impl Sub<ConstDecimals<41>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<16>
impl Sub<ConstDecimals<41>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<17>
impl Sub<ConstDecimals<41>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<18>
impl Sub<ConstDecimals<41>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<19>
impl Sub<ConstDecimals<41>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<20>
impl Sub<ConstDecimals<41>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<21>
impl Sub<ConstDecimals<41>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<22>
impl Sub<ConstDecimals<41>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<23>
impl Sub<ConstDecimals<41>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<24>
impl Sub<ConstDecimals<41>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<25>
impl Sub<ConstDecimals<41>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<26>
impl Sub<ConstDecimals<41>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<27>
impl Sub<ConstDecimals<41>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<28>
impl Sub<ConstDecimals<41>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<29>
impl Sub<ConstDecimals<41>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<30>
impl Sub<ConstDecimals<41>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<31>
impl Sub<ConstDecimals<41>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<32>
impl Sub<ConstDecimals<41>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<33>
impl Sub<ConstDecimals<41>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<34>
impl Sub<ConstDecimals<41>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<35>
impl Sub<ConstDecimals<41>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<36>
impl Sub<ConstDecimals<41>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<37>
impl Sub<ConstDecimals<41>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<38>
impl Sub<ConstDecimals<41>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<39>
impl Sub<ConstDecimals<41>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<40>
impl Sub<ConstDecimals<41>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<42>
impl Sub<ConstDecimals<41>> for ConstDecimals<42>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<43>
impl Sub<ConstDecimals<41>> for ConstDecimals<43>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<44>
impl Sub<ConstDecimals<41>> for ConstDecimals<44>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<45>
impl Sub<ConstDecimals<41>> for ConstDecimals<45>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<46>
impl Sub<ConstDecimals<41>> for ConstDecimals<46>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<47>
impl Sub<ConstDecimals<41>> for ConstDecimals<47>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<48>
impl Sub<ConstDecimals<41>> for ConstDecimals<48>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<49>
impl Sub<ConstDecimals<41>> for ConstDecimals<49>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<50>
impl Sub<ConstDecimals<41>> for ConstDecimals<50>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<51>
impl Sub<ConstDecimals<41>> for ConstDecimals<51>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<52>
impl Sub<ConstDecimals<41>> for ConstDecimals<52>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<53>
impl Sub<ConstDecimals<41>> for ConstDecimals<53>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<54>
impl Sub<ConstDecimals<41>> for ConstDecimals<54>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<55>
impl Sub<ConstDecimals<41>> for ConstDecimals<55>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<56>
impl Sub<ConstDecimals<41>> for ConstDecimals<56>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<57>
impl Sub<ConstDecimals<41>> for ConstDecimals<57>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<58>
impl Sub<ConstDecimals<41>> for ConstDecimals<58>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<59>
impl Sub<ConstDecimals<41>> for ConstDecimals<59>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<60>
impl Sub<ConstDecimals<41>> for ConstDecimals<60>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<61>
impl Sub<ConstDecimals<41>> for ConstDecimals<61>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<62>
impl Sub<ConstDecimals<41>> for ConstDecimals<62>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<63>
impl Sub<ConstDecimals<41>> for ConstDecimals<63>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<41>> for ConstDecimals<64>
impl Sub<ConstDecimals<41>> for ConstDecimals<64>
type Output = ConstDecimals<23>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<0>
impl Sub<ConstDecimals<42>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<1>
impl Sub<ConstDecimals<42>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<2>
impl Sub<ConstDecimals<42>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<3>
impl Sub<ConstDecimals<42>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<4>
impl Sub<ConstDecimals<42>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<5>
impl Sub<ConstDecimals<42>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<6>
impl Sub<ConstDecimals<42>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<7>
impl Sub<ConstDecimals<42>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<8>
impl Sub<ConstDecimals<42>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<9>
impl Sub<ConstDecimals<42>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<10>
impl Sub<ConstDecimals<42>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<11>
impl Sub<ConstDecimals<42>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<12>
impl Sub<ConstDecimals<42>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<13>
impl Sub<ConstDecimals<42>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<14>
impl Sub<ConstDecimals<42>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<15>
impl Sub<ConstDecimals<42>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<16>
impl Sub<ConstDecimals<42>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<17>
impl Sub<ConstDecimals<42>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<18>
impl Sub<ConstDecimals<42>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<19>
impl Sub<ConstDecimals<42>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<20>
impl Sub<ConstDecimals<42>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<21>
impl Sub<ConstDecimals<42>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<22>
impl Sub<ConstDecimals<42>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<23>
impl Sub<ConstDecimals<42>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<24>
impl Sub<ConstDecimals<42>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<25>
impl Sub<ConstDecimals<42>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<26>
impl Sub<ConstDecimals<42>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<27>
impl Sub<ConstDecimals<42>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<28>
impl Sub<ConstDecimals<42>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<29>
impl Sub<ConstDecimals<42>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<30>
impl Sub<ConstDecimals<42>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<31>
impl Sub<ConstDecimals<42>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<32>
impl Sub<ConstDecimals<42>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<33>
impl Sub<ConstDecimals<42>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<34>
impl Sub<ConstDecimals<42>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<35>
impl Sub<ConstDecimals<42>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<36>
impl Sub<ConstDecimals<42>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<37>
impl Sub<ConstDecimals<42>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<38>
impl Sub<ConstDecimals<42>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<39>
impl Sub<ConstDecimals<42>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<40>
impl Sub<ConstDecimals<42>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<41>
impl Sub<ConstDecimals<42>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<43>
impl Sub<ConstDecimals<42>> for ConstDecimals<43>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<44>
impl Sub<ConstDecimals<42>> for ConstDecimals<44>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<45>
impl Sub<ConstDecimals<42>> for ConstDecimals<45>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<46>
impl Sub<ConstDecimals<42>> for ConstDecimals<46>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<47>
impl Sub<ConstDecimals<42>> for ConstDecimals<47>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<48>
impl Sub<ConstDecimals<42>> for ConstDecimals<48>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<49>
impl Sub<ConstDecimals<42>> for ConstDecimals<49>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<50>
impl Sub<ConstDecimals<42>> for ConstDecimals<50>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<51>
impl Sub<ConstDecimals<42>> for ConstDecimals<51>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<52>
impl Sub<ConstDecimals<42>> for ConstDecimals<52>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<53>
impl Sub<ConstDecimals<42>> for ConstDecimals<53>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<54>
impl Sub<ConstDecimals<42>> for ConstDecimals<54>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<55>
impl Sub<ConstDecimals<42>> for ConstDecimals<55>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<56>
impl Sub<ConstDecimals<42>> for ConstDecimals<56>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<57>
impl Sub<ConstDecimals<42>> for ConstDecimals<57>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<58>
impl Sub<ConstDecimals<42>> for ConstDecimals<58>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<59>
impl Sub<ConstDecimals<42>> for ConstDecimals<59>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<60>
impl Sub<ConstDecimals<42>> for ConstDecimals<60>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<61>
impl Sub<ConstDecimals<42>> for ConstDecimals<61>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<62>
impl Sub<ConstDecimals<42>> for ConstDecimals<62>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<63>
impl Sub<ConstDecimals<42>> for ConstDecimals<63>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<42>> for ConstDecimals<64>
impl Sub<ConstDecimals<42>> for ConstDecimals<64>
type Output = ConstDecimals<22>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<0>
impl Sub<ConstDecimals<43>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<1>
impl Sub<ConstDecimals<43>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<2>
impl Sub<ConstDecimals<43>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<3>
impl Sub<ConstDecimals<43>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<4>
impl Sub<ConstDecimals<43>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<5>
impl Sub<ConstDecimals<43>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<6>
impl Sub<ConstDecimals<43>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<7>
impl Sub<ConstDecimals<43>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<8>
impl Sub<ConstDecimals<43>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<9>
impl Sub<ConstDecimals<43>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<10>
impl Sub<ConstDecimals<43>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<11>
impl Sub<ConstDecimals<43>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<12>
impl Sub<ConstDecimals<43>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<13>
impl Sub<ConstDecimals<43>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<14>
impl Sub<ConstDecimals<43>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<15>
impl Sub<ConstDecimals<43>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<16>
impl Sub<ConstDecimals<43>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<17>
impl Sub<ConstDecimals<43>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<18>
impl Sub<ConstDecimals<43>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<19>
impl Sub<ConstDecimals<43>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<20>
impl Sub<ConstDecimals<43>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<21>
impl Sub<ConstDecimals<43>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<22>
impl Sub<ConstDecimals<43>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<23>
impl Sub<ConstDecimals<43>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<24>
impl Sub<ConstDecimals<43>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<25>
impl Sub<ConstDecimals<43>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<26>
impl Sub<ConstDecimals<43>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<27>
impl Sub<ConstDecimals<43>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<28>
impl Sub<ConstDecimals<43>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<29>
impl Sub<ConstDecimals<43>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<30>
impl Sub<ConstDecimals<43>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<31>
impl Sub<ConstDecimals<43>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<32>
impl Sub<ConstDecimals<43>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<33>
impl Sub<ConstDecimals<43>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<34>
impl Sub<ConstDecimals<43>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<35>
impl Sub<ConstDecimals<43>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<36>
impl Sub<ConstDecimals<43>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<37>
impl Sub<ConstDecimals<43>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<38>
impl Sub<ConstDecimals<43>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<39>
impl Sub<ConstDecimals<43>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<40>
impl Sub<ConstDecimals<43>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<41>
impl Sub<ConstDecimals<43>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<42>
impl Sub<ConstDecimals<43>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<44>
impl Sub<ConstDecimals<43>> for ConstDecimals<44>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<45>
impl Sub<ConstDecimals<43>> for ConstDecimals<45>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<46>
impl Sub<ConstDecimals<43>> for ConstDecimals<46>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<47>
impl Sub<ConstDecimals<43>> for ConstDecimals<47>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<48>
impl Sub<ConstDecimals<43>> for ConstDecimals<48>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<49>
impl Sub<ConstDecimals<43>> for ConstDecimals<49>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<50>
impl Sub<ConstDecimals<43>> for ConstDecimals<50>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<51>
impl Sub<ConstDecimals<43>> for ConstDecimals<51>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<52>
impl Sub<ConstDecimals<43>> for ConstDecimals<52>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<53>
impl Sub<ConstDecimals<43>> for ConstDecimals<53>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<54>
impl Sub<ConstDecimals<43>> for ConstDecimals<54>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<55>
impl Sub<ConstDecimals<43>> for ConstDecimals<55>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<56>
impl Sub<ConstDecimals<43>> for ConstDecimals<56>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<57>
impl Sub<ConstDecimals<43>> for ConstDecimals<57>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<58>
impl Sub<ConstDecimals<43>> for ConstDecimals<58>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<59>
impl Sub<ConstDecimals<43>> for ConstDecimals<59>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<60>
impl Sub<ConstDecimals<43>> for ConstDecimals<60>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<61>
impl Sub<ConstDecimals<43>> for ConstDecimals<61>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<62>
impl Sub<ConstDecimals<43>> for ConstDecimals<62>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<63>
impl Sub<ConstDecimals<43>> for ConstDecimals<63>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<43>> for ConstDecimals<64>
impl Sub<ConstDecimals<43>> for ConstDecimals<64>
type Output = ConstDecimals<21>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<0>
impl Sub<ConstDecimals<44>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<1>
impl Sub<ConstDecimals<44>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<2>
impl Sub<ConstDecimals<44>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<3>
impl Sub<ConstDecimals<44>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<4>
impl Sub<ConstDecimals<44>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<5>
impl Sub<ConstDecimals<44>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<6>
impl Sub<ConstDecimals<44>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<7>
impl Sub<ConstDecimals<44>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<8>
impl Sub<ConstDecimals<44>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<9>
impl Sub<ConstDecimals<44>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<10>
impl Sub<ConstDecimals<44>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<11>
impl Sub<ConstDecimals<44>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<12>
impl Sub<ConstDecimals<44>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<13>
impl Sub<ConstDecimals<44>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<14>
impl Sub<ConstDecimals<44>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<15>
impl Sub<ConstDecimals<44>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<16>
impl Sub<ConstDecimals<44>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<17>
impl Sub<ConstDecimals<44>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<18>
impl Sub<ConstDecimals<44>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<19>
impl Sub<ConstDecimals<44>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<20>
impl Sub<ConstDecimals<44>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<21>
impl Sub<ConstDecimals<44>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<22>
impl Sub<ConstDecimals<44>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<23>
impl Sub<ConstDecimals<44>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<24>
impl Sub<ConstDecimals<44>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<25>
impl Sub<ConstDecimals<44>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<26>
impl Sub<ConstDecimals<44>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<27>
impl Sub<ConstDecimals<44>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<28>
impl Sub<ConstDecimals<44>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<29>
impl Sub<ConstDecimals<44>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<30>
impl Sub<ConstDecimals<44>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<31>
impl Sub<ConstDecimals<44>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<32>
impl Sub<ConstDecimals<44>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<33>
impl Sub<ConstDecimals<44>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<34>
impl Sub<ConstDecimals<44>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<35>
impl Sub<ConstDecimals<44>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<36>
impl Sub<ConstDecimals<44>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<37>
impl Sub<ConstDecimals<44>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<38>
impl Sub<ConstDecimals<44>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<39>
impl Sub<ConstDecimals<44>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<40>
impl Sub<ConstDecimals<44>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<41>
impl Sub<ConstDecimals<44>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<42>
impl Sub<ConstDecimals<44>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<43>
impl Sub<ConstDecimals<44>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<45>
impl Sub<ConstDecimals<44>> for ConstDecimals<45>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<46>
impl Sub<ConstDecimals<44>> for ConstDecimals<46>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<47>
impl Sub<ConstDecimals<44>> for ConstDecimals<47>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<48>
impl Sub<ConstDecimals<44>> for ConstDecimals<48>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<49>
impl Sub<ConstDecimals<44>> for ConstDecimals<49>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<50>
impl Sub<ConstDecimals<44>> for ConstDecimals<50>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<51>
impl Sub<ConstDecimals<44>> for ConstDecimals<51>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<52>
impl Sub<ConstDecimals<44>> for ConstDecimals<52>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<53>
impl Sub<ConstDecimals<44>> for ConstDecimals<53>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<54>
impl Sub<ConstDecimals<44>> for ConstDecimals<54>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<55>
impl Sub<ConstDecimals<44>> for ConstDecimals<55>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<56>
impl Sub<ConstDecimals<44>> for ConstDecimals<56>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<57>
impl Sub<ConstDecimals<44>> for ConstDecimals<57>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<58>
impl Sub<ConstDecimals<44>> for ConstDecimals<58>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<59>
impl Sub<ConstDecimals<44>> for ConstDecimals<59>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<60>
impl Sub<ConstDecimals<44>> for ConstDecimals<60>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<61>
impl Sub<ConstDecimals<44>> for ConstDecimals<61>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<62>
impl Sub<ConstDecimals<44>> for ConstDecimals<62>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<63>
impl Sub<ConstDecimals<44>> for ConstDecimals<63>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<44>> for ConstDecimals<64>
impl Sub<ConstDecimals<44>> for ConstDecimals<64>
type Output = ConstDecimals<20>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<0>
impl Sub<ConstDecimals<45>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<1>
impl Sub<ConstDecimals<45>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<2>
impl Sub<ConstDecimals<45>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<3>
impl Sub<ConstDecimals<45>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<4>
impl Sub<ConstDecimals<45>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<5>
impl Sub<ConstDecimals<45>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<6>
impl Sub<ConstDecimals<45>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<7>
impl Sub<ConstDecimals<45>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<8>
impl Sub<ConstDecimals<45>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<9>
impl Sub<ConstDecimals<45>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<10>
impl Sub<ConstDecimals<45>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<11>
impl Sub<ConstDecimals<45>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<12>
impl Sub<ConstDecimals<45>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<13>
impl Sub<ConstDecimals<45>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<14>
impl Sub<ConstDecimals<45>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<15>
impl Sub<ConstDecimals<45>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<16>
impl Sub<ConstDecimals<45>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<17>
impl Sub<ConstDecimals<45>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<18>
impl Sub<ConstDecimals<45>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<19>
impl Sub<ConstDecimals<45>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<20>
impl Sub<ConstDecimals<45>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<21>
impl Sub<ConstDecimals<45>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<22>
impl Sub<ConstDecimals<45>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<23>
impl Sub<ConstDecimals<45>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<24>
impl Sub<ConstDecimals<45>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<25>
impl Sub<ConstDecimals<45>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<26>
impl Sub<ConstDecimals<45>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<27>
impl Sub<ConstDecimals<45>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<28>
impl Sub<ConstDecimals<45>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<29>
impl Sub<ConstDecimals<45>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<30>
impl Sub<ConstDecimals<45>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<31>
impl Sub<ConstDecimals<45>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<32>
impl Sub<ConstDecimals<45>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<33>
impl Sub<ConstDecimals<45>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<34>
impl Sub<ConstDecimals<45>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<35>
impl Sub<ConstDecimals<45>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<36>
impl Sub<ConstDecimals<45>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<37>
impl Sub<ConstDecimals<45>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<38>
impl Sub<ConstDecimals<45>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<39>
impl Sub<ConstDecimals<45>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<40>
impl Sub<ConstDecimals<45>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<41>
impl Sub<ConstDecimals<45>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<42>
impl Sub<ConstDecimals<45>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<43>
impl Sub<ConstDecimals<45>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<44>
impl Sub<ConstDecimals<45>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<46>
impl Sub<ConstDecimals<45>> for ConstDecimals<46>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<47>
impl Sub<ConstDecimals<45>> for ConstDecimals<47>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<48>
impl Sub<ConstDecimals<45>> for ConstDecimals<48>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<49>
impl Sub<ConstDecimals<45>> for ConstDecimals<49>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<50>
impl Sub<ConstDecimals<45>> for ConstDecimals<50>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<51>
impl Sub<ConstDecimals<45>> for ConstDecimals<51>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<52>
impl Sub<ConstDecimals<45>> for ConstDecimals<52>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<53>
impl Sub<ConstDecimals<45>> for ConstDecimals<53>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<54>
impl Sub<ConstDecimals<45>> for ConstDecimals<54>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<55>
impl Sub<ConstDecimals<45>> for ConstDecimals<55>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<56>
impl Sub<ConstDecimals<45>> for ConstDecimals<56>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<57>
impl Sub<ConstDecimals<45>> for ConstDecimals<57>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<58>
impl Sub<ConstDecimals<45>> for ConstDecimals<58>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<59>
impl Sub<ConstDecimals<45>> for ConstDecimals<59>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<60>
impl Sub<ConstDecimals<45>> for ConstDecimals<60>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<61>
impl Sub<ConstDecimals<45>> for ConstDecimals<61>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<62>
impl Sub<ConstDecimals<45>> for ConstDecimals<62>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<63>
impl Sub<ConstDecimals<45>> for ConstDecimals<63>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<45>> for ConstDecimals<64>
impl Sub<ConstDecimals<45>> for ConstDecimals<64>
type Output = ConstDecimals<19>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<0>
impl Sub<ConstDecimals<46>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<1>
impl Sub<ConstDecimals<46>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<2>
impl Sub<ConstDecimals<46>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<3>
impl Sub<ConstDecimals<46>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<4>
impl Sub<ConstDecimals<46>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<5>
impl Sub<ConstDecimals<46>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<6>
impl Sub<ConstDecimals<46>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<7>
impl Sub<ConstDecimals<46>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<8>
impl Sub<ConstDecimals<46>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<9>
impl Sub<ConstDecimals<46>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<10>
impl Sub<ConstDecimals<46>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<11>
impl Sub<ConstDecimals<46>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<12>
impl Sub<ConstDecimals<46>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<13>
impl Sub<ConstDecimals<46>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<14>
impl Sub<ConstDecimals<46>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<15>
impl Sub<ConstDecimals<46>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<16>
impl Sub<ConstDecimals<46>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<17>
impl Sub<ConstDecimals<46>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<18>
impl Sub<ConstDecimals<46>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<19>
impl Sub<ConstDecimals<46>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<20>
impl Sub<ConstDecimals<46>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<21>
impl Sub<ConstDecimals<46>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<22>
impl Sub<ConstDecimals<46>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<23>
impl Sub<ConstDecimals<46>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<24>
impl Sub<ConstDecimals<46>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<25>
impl Sub<ConstDecimals<46>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<26>
impl Sub<ConstDecimals<46>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<27>
impl Sub<ConstDecimals<46>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<28>
impl Sub<ConstDecimals<46>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<29>
impl Sub<ConstDecimals<46>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<30>
impl Sub<ConstDecimals<46>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<31>
impl Sub<ConstDecimals<46>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<32>
impl Sub<ConstDecimals<46>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<33>
impl Sub<ConstDecimals<46>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<34>
impl Sub<ConstDecimals<46>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<35>
impl Sub<ConstDecimals<46>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<36>
impl Sub<ConstDecimals<46>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<37>
impl Sub<ConstDecimals<46>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<38>
impl Sub<ConstDecimals<46>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<39>
impl Sub<ConstDecimals<46>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<40>
impl Sub<ConstDecimals<46>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<41>
impl Sub<ConstDecimals<46>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<42>
impl Sub<ConstDecimals<46>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<43>
impl Sub<ConstDecimals<46>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<44>
impl Sub<ConstDecimals<46>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<45>
impl Sub<ConstDecimals<46>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<47>
impl Sub<ConstDecimals<46>> for ConstDecimals<47>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<48>
impl Sub<ConstDecimals<46>> for ConstDecimals<48>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<49>
impl Sub<ConstDecimals<46>> for ConstDecimals<49>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<50>
impl Sub<ConstDecimals<46>> for ConstDecimals<50>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<51>
impl Sub<ConstDecimals<46>> for ConstDecimals<51>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<52>
impl Sub<ConstDecimals<46>> for ConstDecimals<52>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<53>
impl Sub<ConstDecimals<46>> for ConstDecimals<53>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<54>
impl Sub<ConstDecimals<46>> for ConstDecimals<54>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<55>
impl Sub<ConstDecimals<46>> for ConstDecimals<55>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<56>
impl Sub<ConstDecimals<46>> for ConstDecimals<56>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<57>
impl Sub<ConstDecimals<46>> for ConstDecimals<57>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<58>
impl Sub<ConstDecimals<46>> for ConstDecimals<58>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<59>
impl Sub<ConstDecimals<46>> for ConstDecimals<59>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<60>
impl Sub<ConstDecimals<46>> for ConstDecimals<60>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<61>
impl Sub<ConstDecimals<46>> for ConstDecimals<61>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<62>
impl Sub<ConstDecimals<46>> for ConstDecimals<62>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<63>
impl Sub<ConstDecimals<46>> for ConstDecimals<63>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<46>> for ConstDecimals<64>
impl Sub<ConstDecimals<46>> for ConstDecimals<64>
type Output = ConstDecimals<18>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<0>
impl Sub<ConstDecimals<47>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<1>
impl Sub<ConstDecimals<47>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<2>
impl Sub<ConstDecimals<47>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<3>
impl Sub<ConstDecimals<47>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<4>
impl Sub<ConstDecimals<47>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<5>
impl Sub<ConstDecimals<47>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<6>
impl Sub<ConstDecimals<47>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<7>
impl Sub<ConstDecimals<47>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<8>
impl Sub<ConstDecimals<47>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<9>
impl Sub<ConstDecimals<47>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<10>
impl Sub<ConstDecimals<47>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<11>
impl Sub<ConstDecimals<47>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<12>
impl Sub<ConstDecimals<47>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<13>
impl Sub<ConstDecimals<47>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<14>
impl Sub<ConstDecimals<47>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<15>
impl Sub<ConstDecimals<47>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<16>
impl Sub<ConstDecimals<47>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<17>
impl Sub<ConstDecimals<47>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<18>
impl Sub<ConstDecimals<47>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<19>
impl Sub<ConstDecimals<47>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<20>
impl Sub<ConstDecimals<47>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<21>
impl Sub<ConstDecimals<47>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<22>
impl Sub<ConstDecimals<47>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<23>
impl Sub<ConstDecimals<47>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<24>
impl Sub<ConstDecimals<47>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<25>
impl Sub<ConstDecimals<47>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<26>
impl Sub<ConstDecimals<47>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<27>
impl Sub<ConstDecimals<47>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<28>
impl Sub<ConstDecimals<47>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<29>
impl Sub<ConstDecimals<47>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<30>
impl Sub<ConstDecimals<47>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<31>
impl Sub<ConstDecimals<47>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<32>
impl Sub<ConstDecimals<47>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<33>
impl Sub<ConstDecimals<47>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<34>
impl Sub<ConstDecimals<47>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<35>
impl Sub<ConstDecimals<47>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<36>
impl Sub<ConstDecimals<47>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<37>
impl Sub<ConstDecimals<47>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<38>
impl Sub<ConstDecimals<47>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<39>
impl Sub<ConstDecimals<47>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<40>
impl Sub<ConstDecimals<47>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<41>
impl Sub<ConstDecimals<47>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<42>
impl Sub<ConstDecimals<47>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<43>
impl Sub<ConstDecimals<47>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<44>
impl Sub<ConstDecimals<47>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<45>
impl Sub<ConstDecimals<47>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<46>
impl Sub<ConstDecimals<47>> for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<48>
impl Sub<ConstDecimals<47>> for ConstDecimals<48>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<49>
impl Sub<ConstDecimals<47>> for ConstDecimals<49>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<50>
impl Sub<ConstDecimals<47>> for ConstDecimals<50>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<51>
impl Sub<ConstDecimals<47>> for ConstDecimals<51>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<52>
impl Sub<ConstDecimals<47>> for ConstDecimals<52>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<53>
impl Sub<ConstDecimals<47>> for ConstDecimals<53>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<54>
impl Sub<ConstDecimals<47>> for ConstDecimals<54>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<55>
impl Sub<ConstDecimals<47>> for ConstDecimals<55>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<56>
impl Sub<ConstDecimals<47>> for ConstDecimals<56>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<57>
impl Sub<ConstDecimals<47>> for ConstDecimals<57>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<58>
impl Sub<ConstDecimals<47>> for ConstDecimals<58>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<59>
impl Sub<ConstDecimals<47>> for ConstDecimals<59>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<60>
impl Sub<ConstDecimals<47>> for ConstDecimals<60>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<61>
impl Sub<ConstDecimals<47>> for ConstDecimals<61>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<62>
impl Sub<ConstDecimals<47>> for ConstDecimals<62>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<63>
impl Sub<ConstDecimals<47>> for ConstDecimals<63>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<47>> for ConstDecimals<64>
impl Sub<ConstDecimals<47>> for ConstDecimals<64>
type Output = ConstDecimals<17>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<0>
impl Sub<ConstDecimals<48>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<1>
impl Sub<ConstDecimals<48>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<2>
impl Sub<ConstDecimals<48>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<3>
impl Sub<ConstDecimals<48>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<4>
impl Sub<ConstDecimals<48>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<5>
impl Sub<ConstDecimals<48>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<6>
impl Sub<ConstDecimals<48>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<7>
impl Sub<ConstDecimals<48>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<8>
impl Sub<ConstDecimals<48>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<9>
impl Sub<ConstDecimals<48>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<10>
impl Sub<ConstDecimals<48>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<11>
impl Sub<ConstDecimals<48>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<12>
impl Sub<ConstDecimals<48>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<13>
impl Sub<ConstDecimals<48>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<14>
impl Sub<ConstDecimals<48>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<15>
impl Sub<ConstDecimals<48>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<16>
impl Sub<ConstDecimals<48>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<17>
impl Sub<ConstDecimals<48>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<18>
impl Sub<ConstDecimals<48>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<19>
impl Sub<ConstDecimals<48>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<20>
impl Sub<ConstDecimals<48>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<21>
impl Sub<ConstDecimals<48>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<22>
impl Sub<ConstDecimals<48>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<23>
impl Sub<ConstDecimals<48>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<24>
impl Sub<ConstDecimals<48>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<25>
impl Sub<ConstDecimals<48>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<26>
impl Sub<ConstDecimals<48>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<27>
impl Sub<ConstDecimals<48>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<28>
impl Sub<ConstDecimals<48>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<29>
impl Sub<ConstDecimals<48>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<30>
impl Sub<ConstDecimals<48>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<31>
impl Sub<ConstDecimals<48>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<32>
impl Sub<ConstDecimals<48>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<33>
impl Sub<ConstDecimals<48>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<34>
impl Sub<ConstDecimals<48>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<35>
impl Sub<ConstDecimals<48>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<36>
impl Sub<ConstDecimals<48>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<37>
impl Sub<ConstDecimals<48>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<38>
impl Sub<ConstDecimals<48>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<39>
impl Sub<ConstDecimals<48>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<40>
impl Sub<ConstDecimals<48>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<41>
impl Sub<ConstDecimals<48>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<42>
impl Sub<ConstDecimals<48>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<43>
impl Sub<ConstDecimals<48>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<44>
impl Sub<ConstDecimals<48>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<45>
impl Sub<ConstDecimals<48>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<46>
impl Sub<ConstDecimals<48>> for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<47>
impl Sub<ConstDecimals<48>> for ConstDecimals<47>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<49>
impl Sub<ConstDecimals<48>> for ConstDecimals<49>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<50>
impl Sub<ConstDecimals<48>> for ConstDecimals<50>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<51>
impl Sub<ConstDecimals<48>> for ConstDecimals<51>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<52>
impl Sub<ConstDecimals<48>> for ConstDecimals<52>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<53>
impl Sub<ConstDecimals<48>> for ConstDecimals<53>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<54>
impl Sub<ConstDecimals<48>> for ConstDecimals<54>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<55>
impl Sub<ConstDecimals<48>> for ConstDecimals<55>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<56>
impl Sub<ConstDecimals<48>> for ConstDecimals<56>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<57>
impl Sub<ConstDecimals<48>> for ConstDecimals<57>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<58>
impl Sub<ConstDecimals<48>> for ConstDecimals<58>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<59>
impl Sub<ConstDecimals<48>> for ConstDecimals<59>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<60>
impl Sub<ConstDecimals<48>> for ConstDecimals<60>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<61>
impl Sub<ConstDecimals<48>> for ConstDecimals<61>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<62>
impl Sub<ConstDecimals<48>> for ConstDecimals<62>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<63>
impl Sub<ConstDecimals<48>> for ConstDecimals<63>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<48>> for ConstDecimals<64>
impl Sub<ConstDecimals<48>> for ConstDecimals<64>
type Output = ConstDecimals<16>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<0>
impl Sub<ConstDecimals<49>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<1>
impl Sub<ConstDecimals<49>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<2>
impl Sub<ConstDecimals<49>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<3>
impl Sub<ConstDecimals<49>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<4>
impl Sub<ConstDecimals<49>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<5>
impl Sub<ConstDecimals<49>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<6>
impl Sub<ConstDecimals<49>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<7>
impl Sub<ConstDecimals<49>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<8>
impl Sub<ConstDecimals<49>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<9>
impl Sub<ConstDecimals<49>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<10>
impl Sub<ConstDecimals<49>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<11>
impl Sub<ConstDecimals<49>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<12>
impl Sub<ConstDecimals<49>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<13>
impl Sub<ConstDecimals<49>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<14>
impl Sub<ConstDecimals<49>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<15>
impl Sub<ConstDecimals<49>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<16>
impl Sub<ConstDecimals<49>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<17>
impl Sub<ConstDecimals<49>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<18>
impl Sub<ConstDecimals<49>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<19>
impl Sub<ConstDecimals<49>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<20>
impl Sub<ConstDecimals<49>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<21>
impl Sub<ConstDecimals<49>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<22>
impl Sub<ConstDecimals<49>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<23>
impl Sub<ConstDecimals<49>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<24>
impl Sub<ConstDecimals<49>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<25>
impl Sub<ConstDecimals<49>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<26>
impl Sub<ConstDecimals<49>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<27>
impl Sub<ConstDecimals<49>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<28>
impl Sub<ConstDecimals<49>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<29>
impl Sub<ConstDecimals<49>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<30>
impl Sub<ConstDecimals<49>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<31>
impl Sub<ConstDecimals<49>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<32>
impl Sub<ConstDecimals<49>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<33>
impl Sub<ConstDecimals<49>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<34>
impl Sub<ConstDecimals<49>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<35>
impl Sub<ConstDecimals<49>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<36>
impl Sub<ConstDecimals<49>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<37>
impl Sub<ConstDecimals<49>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<38>
impl Sub<ConstDecimals<49>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<39>
impl Sub<ConstDecimals<49>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<40>
impl Sub<ConstDecimals<49>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<41>
impl Sub<ConstDecimals<49>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<42>
impl Sub<ConstDecimals<49>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<43>
impl Sub<ConstDecimals<49>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<44>
impl Sub<ConstDecimals<49>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<45>
impl Sub<ConstDecimals<49>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<46>
impl Sub<ConstDecimals<49>> for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<47>
impl Sub<ConstDecimals<49>> for ConstDecimals<47>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<48>
impl Sub<ConstDecimals<49>> for ConstDecimals<48>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<50>
impl Sub<ConstDecimals<49>> for ConstDecimals<50>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<51>
impl Sub<ConstDecimals<49>> for ConstDecimals<51>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<52>
impl Sub<ConstDecimals<49>> for ConstDecimals<52>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<53>
impl Sub<ConstDecimals<49>> for ConstDecimals<53>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<54>
impl Sub<ConstDecimals<49>> for ConstDecimals<54>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<55>
impl Sub<ConstDecimals<49>> for ConstDecimals<55>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<56>
impl Sub<ConstDecimals<49>> for ConstDecimals<56>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<57>
impl Sub<ConstDecimals<49>> for ConstDecimals<57>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<58>
impl Sub<ConstDecimals<49>> for ConstDecimals<58>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<59>
impl Sub<ConstDecimals<49>> for ConstDecimals<59>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<60>
impl Sub<ConstDecimals<49>> for ConstDecimals<60>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<61>
impl Sub<ConstDecimals<49>> for ConstDecimals<61>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<62>
impl Sub<ConstDecimals<49>> for ConstDecimals<62>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<63>
impl Sub<ConstDecimals<49>> for ConstDecimals<63>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<49>> for ConstDecimals<64>
impl Sub<ConstDecimals<49>> for ConstDecimals<64>
type Output = ConstDecimals<15>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<0>
impl Sub<ConstDecimals<50>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<1>
impl Sub<ConstDecimals<50>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<2>
impl Sub<ConstDecimals<50>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<3>
impl Sub<ConstDecimals<50>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<4>
impl Sub<ConstDecimals<50>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<5>
impl Sub<ConstDecimals<50>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<6>
impl Sub<ConstDecimals<50>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<7>
impl Sub<ConstDecimals<50>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<8>
impl Sub<ConstDecimals<50>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<9>
impl Sub<ConstDecimals<50>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<10>
impl Sub<ConstDecimals<50>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<11>
impl Sub<ConstDecimals<50>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<12>
impl Sub<ConstDecimals<50>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<13>
impl Sub<ConstDecimals<50>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<14>
impl Sub<ConstDecimals<50>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<15>
impl Sub<ConstDecimals<50>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<16>
impl Sub<ConstDecimals<50>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<17>
impl Sub<ConstDecimals<50>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<18>
impl Sub<ConstDecimals<50>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<19>
impl Sub<ConstDecimals<50>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<20>
impl Sub<ConstDecimals<50>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<21>
impl Sub<ConstDecimals<50>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<22>
impl Sub<ConstDecimals<50>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<23>
impl Sub<ConstDecimals<50>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<24>
impl Sub<ConstDecimals<50>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<25>
impl Sub<ConstDecimals<50>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<26>
impl Sub<ConstDecimals<50>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<27>
impl Sub<ConstDecimals<50>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<28>
impl Sub<ConstDecimals<50>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<29>
impl Sub<ConstDecimals<50>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<30>
impl Sub<ConstDecimals<50>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<31>
impl Sub<ConstDecimals<50>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<32>
impl Sub<ConstDecimals<50>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<33>
impl Sub<ConstDecimals<50>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<34>
impl Sub<ConstDecimals<50>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<35>
impl Sub<ConstDecimals<50>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<36>
impl Sub<ConstDecimals<50>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<37>
impl Sub<ConstDecimals<50>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<38>
impl Sub<ConstDecimals<50>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<39>
impl Sub<ConstDecimals<50>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<40>
impl Sub<ConstDecimals<50>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<41>
impl Sub<ConstDecimals<50>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<42>
impl Sub<ConstDecimals<50>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<43>
impl Sub<ConstDecimals<50>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<44>
impl Sub<ConstDecimals<50>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<45>
impl Sub<ConstDecimals<50>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<46>
impl Sub<ConstDecimals<50>> for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<47>
impl Sub<ConstDecimals<50>> for ConstDecimals<47>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<48>
impl Sub<ConstDecimals<50>> for ConstDecimals<48>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<49>
impl Sub<ConstDecimals<50>> for ConstDecimals<49>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<51>
impl Sub<ConstDecimals<50>> for ConstDecimals<51>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<52>
impl Sub<ConstDecimals<50>> for ConstDecimals<52>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<53>
impl Sub<ConstDecimals<50>> for ConstDecimals<53>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<54>
impl Sub<ConstDecimals<50>> for ConstDecimals<54>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<55>
impl Sub<ConstDecimals<50>> for ConstDecimals<55>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<56>
impl Sub<ConstDecimals<50>> for ConstDecimals<56>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<57>
impl Sub<ConstDecimals<50>> for ConstDecimals<57>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<58>
impl Sub<ConstDecimals<50>> for ConstDecimals<58>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<59>
impl Sub<ConstDecimals<50>> for ConstDecimals<59>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<60>
impl Sub<ConstDecimals<50>> for ConstDecimals<60>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<61>
impl Sub<ConstDecimals<50>> for ConstDecimals<61>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<62>
impl Sub<ConstDecimals<50>> for ConstDecimals<62>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<63>
impl Sub<ConstDecimals<50>> for ConstDecimals<63>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<50>> for ConstDecimals<64>
impl Sub<ConstDecimals<50>> for ConstDecimals<64>
type Output = ConstDecimals<14>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<0>
impl Sub<ConstDecimals<51>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<1>
impl Sub<ConstDecimals<51>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<2>
impl Sub<ConstDecimals<51>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<3>
impl Sub<ConstDecimals<51>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<4>
impl Sub<ConstDecimals<51>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<5>
impl Sub<ConstDecimals<51>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<6>
impl Sub<ConstDecimals<51>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<7>
impl Sub<ConstDecimals<51>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<8>
impl Sub<ConstDecimals<51>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<9>
impl Sub<ConstDecimals<51>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<10>
impl Sub<ConstDecimals<51>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<11>
impl Sub<ConstDecimals<51>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<12>
impl Sub<ConstDecimals<51>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<13>
impl Sub<ConstDecimals<51>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<14>
impl Sub<ConstDecimals<51>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<15>
impl Sub<ConstDecimals<51>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<16>
impl Sub<ConstDecimals<51>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<17>
impl Sub<ConstDecimals<51>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<18>
impl Sub<ConstDecimals<51>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<19>
impl Sub<ConstDecimals<51>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<20>
impl Sub<ConstDecimals<51>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<21>
impl Sub<ConstDecimals<51>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<22>
impl Sub<ConstDecimals<51>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<23>
impl Sub<ConstDecimals<51>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<24>
impl Sub<ConstDecimals<51>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<25>
impl Sub<ConstDecimals<51>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<26>
impl Sub<ConstDecimals<51>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<27>
impl Sub<ConstDecimals<51>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<28>
impl Sub<ConstDecimals<51>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<29>
impl Sub<ConstDecimals<51>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<30>
impl Sub<ConstDecimals<51>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<31>
impl Sub<ConstDecimals<51>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<32>
impl Sub<ConstDecimals<51>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<33>
impl Sub<ConstDecimals<51>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<34>
impl Sub<ConstDecimals<51>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<35>
impl Sub<ConstDecimals<51>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<36>
impl Sub<ConstDecimals<51>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<37>
impl Sub<ConstDecimals<51>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<38>
impl Sub<ConstDecimals<51>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<39>
impl Sub<ConstDecimals<51>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<40>
impl Sub<ConstDecimals<51>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<41>
impl Sub<ConstDecimals<51>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<42>
impl Sub<ConstDecimals<51>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<43>
impl Sub<ConstDecimals<51>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<44>
impl Sub<ConstDecimals<51>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<45>
impl Sub<ConstDecimals<51>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<46>
impl Sub<ConstDecimals<51>> for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<47>
impl Sub<ConstDecimals<51>> for ConstDecimals<47>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<48>
impl Sub<ConstDecimals<51>> for ConstDecimals<48>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<49>
impl Sub<ConstDecimals<51>> for ConstDecimals<49>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<50>
impl Sub<ConstDecimals<51>> for ConstDecimals<50>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<52>
impl Sub<ConstDecimals<51>> for ConstDecimals<52>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<53>
impl Sub<ConstDecimals<51>> for ConstDecimals<53>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<54>
impl Sub<ConstDecimals<51>> for ConstDecimals<54>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<55>
impl Sub<ConstDecimals<51>> for ConstDecimals<55>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<56>
impl Sub<ConstDecimals<51>> for ConstDecimals<56>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<57>
impl Sub<ConstDecimals<51>> for ConstDecimals<57>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<58>
impl Sub<ConstDecimals<51>> for ConstDecimals<58>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<59>
impl Sub<ConstDecimals<51>> for ConstDecimals<59>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<60>
impl Sub<ConstDecimals<51>> for ConstDecimals<60>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<61>
impl Sub<ConstDecimals<51>> for ConstDecimals<61>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<62>
impl Sub<ConstDecimals<51>> for ConstDecimals<62>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<63>
impl Sub<ConstDecimals<51>> for ConstDecimals<63>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<51>> for ConstDecimals<64>
impl Sub<ConstDecimals<51>> for ConstDecimals<64>
type Output = ConstDecimals<13>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<0>
impl Sub<ConstDecimals<52>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<1>
impl Sub<ConstDecimals<52>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<2>
impl Sub<ConstDecimals<52>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<3>
impl Sub<ConstDecimals<52>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<4>
impl Sub<ConstDecimals<52>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<5>
impl Sub<ConstDecimals<52>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<6>
impl Sub<ConstDecimals<52>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<7>
impl Sub<ConstDecimals<52>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<8>
impl Sub<ConstDecimals<52>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<9>
impl Sub<ConstDecimals<52>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<10>
impl Sub<ConstDecimals<52>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<11>
impl Sub<ConstDecimals<52>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<12>
impl Sub<ConstDecimals<52>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<13>
impl Sub<ConstDecimals<52>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<14>
impl Sub<ConstDecimals<52>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<15>
impl Sub<ConstDecimals<52>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<16>
impl Sub<ConstDecimals<52>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<17>
impl Sub<ConstDecimals<52>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<18>
impl Sub<ConstDecimals<52>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<19>
impl Sub<ConstDecimals<52>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<20>
impl Sub<ConstDecimals<52>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<21>
impl Sub<ConstDecimals<52>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<22>
impl Sub<ConstDecimals<52>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<23>
impl Sub<ConstDecimals<52>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<24>
impl Sub<ConstDecimals<52>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<25>
impl Sub<ConstDecimals<52>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<26>
impl Sub<ConstDecimals<52>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<27>
impl Sub<ConstDecimals<52>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<28>
impl Sub<ConstDecimals<52>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<29>
impl Sub<ConstDecimals<52>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<30>
impl Sub<ConstDecimals<52>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<31>
impl Sub<ConstDecimals<52>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<32>
impl Sub<ConstDecimals<52>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<33>
impl Sub<ConstDecimals<52>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<34>
impl Sub<ConstDecimals<52>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<35>
impl Sub<ConstDecimals<52>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<36>
impl Sub<ConstDecimals<52>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<37>
impl Sub<ConstDecimals<52>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<38>
impl Sub<ConstDecimals<52>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<39>
impl Sub<ConstDecimals<52>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<40>
impl Sub<ConstDecimals<52>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<41>
impl Sub<ConstDecimals<52>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<42>
impl Sub<ConstDecimals<52>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<43>
impl Sub<ConstDecimals<52>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<44>
impl Sub<ConstDecimals<52>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<45>
impl Sub<ConstDecimals<52>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<46>
impl Sub<ConstDecimals<52>> for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<47>
impl Sub<ConstDecimals<52>> for ConstDecimals<47>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<48>
impl Sub<ConstDecimals<52>> for ConstDecimals<48>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<49>
impl Sub<ConstDecimals<52>> for ConstDecimals<49>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<50>
impl Sub<ConstDecimals<52>> for ConstDecimals<50>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<51>
impl Sub<ConstDecimals<52>> for ConstDecimals<51>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<53>
impl Sub<ConstDecimals<52>> for ConstDecimals<53>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<54>
impl Sub<ConstDecimals<52>> for ConstDecimals<54>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<55>
impl Sub<ConstDecimals<52>> for ConstDecimals<55>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<56>
impl Sub<ConstDecimals<52>> for ConstDecimals<56>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<57>
impl Sub<ConstDecimals<52>> for ConstDecimals<57>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<58>
impl Sub<ConstDecimals<52>> for ConstDecimals<58>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<59>
impl Sub<ConstDecimals<52>> for ConstDecimals<59>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<60>
impl Sub<ConstDecimals<52>> for ConstDecimals<60>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<61>
impl Sub<ConstDecimals<52>> for ConstDecimals<61>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<62>
impl Sub<ConstDecimals<52>> for ConstDecimals<62>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<63>
impl Sub<ConstDecimals<52>> for ConstDecimals<63>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<52>> for ConstDecimals<64>
impl Sub<ConstDecimals<52>> for ConstDecimals<64>
type Output = ConstDecimals<12>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<0>
impl Sub<ConstDecimals<53>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<1>
impl Sub<ConstDecimals<53>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<2>
impl Sub<ConstDecimals<53>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<3>
impl Sub<ConstDecimals<53>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<4>
impl Sub<ConstDecimals<53>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<5>
impl Sub<ConstDecimals<53>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<6>
impl Sub<ConstDecimals<53>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<7>
impl Sub<ConstDecimals<53>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<8>
impl Sub<ConstDecimals<53>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<9>
impl Sub<ConstDecimals<53>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<10>
impl Sub<ConstDecimals<53>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<11>
impl Sub<ConstDecimals<53>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<12>
impl Sub<ConstDecimals<53>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<13>
impl Sub<ConstDecimals<53>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<14>
impl Sub<ConstDecimals<53>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<15>
impl Sub<ConstDecimals<53>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<16>
impl Sub<ConstDecimals<53>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<17>
impl Sub<ConstDecimals<53>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<18>
impl Sub<ConstDecimals<53>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<19>
impl Sub<ConstDecimals<53>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<20>
impl Sub<ConstDecimals<53>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<21>
impl Sub<ConstDecimals<53>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<22>
impl Sub<ConstDecimals<53>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<23>
impl Sub<ConstDecimals<53>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<24>
impl Sub<ConstDecimals<53>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<25>
impl Sub<ConstDecimals<53>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<26>
impl Sub<ConstDecimals<53>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<27>
impl Sub<ConstDecimals<53>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<28>
impl Sub<ConstDecimals<53>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<29>
impl Sub<ConstDecimals<53>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<30>
impl Sub<ConstDecimals<53>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<31>
impl Sub<ConstDecimals<53>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<32>
impl Sub<ConstDecimals<53>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<33>
impl Sub<ConstDecimals<53>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<34>
impl Sub<ConstDecimals<53>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<35>
impl Sub<ConstDecimals<53>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<36>
impl Sub<ConstDecimals<53>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<37>
impl Sub<ConstDecimals<53>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<38>
impl Sub<ConstDecimals<53>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<39>
impl Sub<ConstDecimals<53>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<40>
impl Sub<ConstDecimals<53>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<41>
impl Sub<ConstDecimals<53>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<42>
impl Sub<ConstDecimals<53>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<43>
impl Sub<ConstDecimals<53>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<44>
impl Sub<ConstDecimals<53>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<45>
impl Sub<ConstDecimals<53>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<46>
impl Sub<ConstDecimals<53>> for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<47>
impl Sub<ConstDecimals<53>> for ConstDecimals<47>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<48>
impl Sub<ConstDecimals<53>> for ConstDecimals<48>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<49>
impl Sub<ConstDecimals<53>> for ConstDecimals<49>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<50>
impl Sub<ConstDecimals<53>> for ConstDecimals<50>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<51>
impl Sub<ConstDecimals<53>> for ConstDecimals<51>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<52>
impl Sub<ConstDecimals<53>> for ConstDecimals<52>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<54>
impl Sub<ConstDecimals<53>> for ConstDecimals<54>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<55>
impl Sub<ConstDecimals<53>> for ConstDecimals<55>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<56>
impl Sub<ConstDecimals<53>> for ConstDecimals<56>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<57>
impl Sub<ConstDecimals<53>> for ConstDecimals<57>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<58>
impl Sub<ConstDecimals<53>> for ConstDecimals<58>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<59>
impl Sub<ConstDecimals<53>> for ConstDecimals<59>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<60>
impl Sub<ConstDecimals<53>> for ConstDecimals<60>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<61>
impl Sub<ConstDecimals<53>> for ConstDecimals<61>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<62>
impl Sub<ConstDecimals<53>> for ConstDecimals<62>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<63>
impl Sub<ConstDecimals<53>> for ConstDecimals<63>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<53>> for ConstDecimals<64>
impl Sub<ConstDecimals<53>> for ConstDecimals<64>
type Output = ConstDecimals<11>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<0>
impl Sub<ConstDecimals<54>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<1>
impl Sub<ConstDecimals<54>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<2>
impl Sub<ConstDecimals<54>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<3>
impl Sub<ConstDecimals<54>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<4>
impl Sub<ConstDecimals<54>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<5>
impl Sub<ConstDecimals<54>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<6>
impl Sub<ConstDecimals<54>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<7>
impl Sub<ConstDecimals<54>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<8>
impl Sub<ConstDecimals<54>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<9>
impl Sub<ConstDecimals<54>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<10>
impl Sub<ConstDecimals<54>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<11>
impl Sub<ConstDecimals<54>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<12>
impl Sub<ConstDecimals<54>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<13>
impl Sub<ConstDecimals<54>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<14>
impl Sub<ConstDecimals<54>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<15>
impl Sub<ConstDecimals<54>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<16>
impl Sub<ConstDecimals<54>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<17>
impl Sub<ConstDecimals<54>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<18>
impl Sub<ConstDecimals<54>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<19>
impl Sub<ConstDecimals<54>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<20>
impl Sub<ConstDecimals<54>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<21>
impl Sub<ConstDecimals<54>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<22>
impl Sub<ConstDecimals<54>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<23>
impl Sub<ConstDecimals<54>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<24>
impl Sub<ConstDecimals<54>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<25>
impl Sub<ConstDecimals<54>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<26>
impl Sub<ConstDecimals<54>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<27>
impl Sub<ConstDecimals<54>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<28>
impl Sub<ConstDecimals<54>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<29>
impl Sub<ConstDecimals<54>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<30>
impl Sub<ConstDecimals<54>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<31>
impl Sub<ConstDecimals<54>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<32>
impl Sub<ConstDecimals<54>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<33>
impl Sub<ConstDecimals<54>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<34>
impl Sub<ConstDecimals<54>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<35>
impl Sub<ConstDecimals<54>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<36>
impl Sub<ConstDecimals<54>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<37>
impl Sub<ConstDecimals<54>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<38>
impl Sub<ConstDecimals<54>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<39>
impl Sub<ConstDecimals<54>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<40>
impl Sub<ConstDecimals<54>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<41>
impl Sub<ConstDecimals<54>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<42>
impl Sub<ConstDecimals<54>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<43>
impl Sub<ConstDecimals<54>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<44>
impl Sub<ConstDecimals<54>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<45>
impl Sub<ConstDecimals<54>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<46>
impl Sub<ConstDecimals<54>> for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<47>
impl Sub<ConstDecimals<54>> for ConstDecimals<47>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<48>
impl Sub<ConstDecimals<54>> for ConstDecimals<48>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<49>
impl Sub<ConstDecimals<54>> for ConstDecimals<49>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<50>
impl Sub<ConstDecimals<54>> for ConstDecimals<50>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<51>
impl Sub<ConstDecimals<54>> for ConstDecimals<51>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<52>
impl Sub<ConstDecimals<54>> for ConstDecimals<52>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<53>
impl Sub<ConstDecimals<54>> for ConstDecimals<53>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<55>
impl Sub<ConstDecimals<54>> for ConstDecimals<55>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<56>
impl Sub<ConstDecimals<54>> for ConstDecimals<56>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<57>
impl Sub<ConstDecimals<54>> for ConstDecimals<57>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<58>
impl Sub<ConstDecimals<54>> for ConstDecimals<58>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<59>
impl Sub<ConstDecimals<54>> for ConstDecimals<59>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<60>
impl Sub<ConstDecimals<54>> for ConstDecimals<60>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<61>
impl Sub<ConstDecimals<54>> for ConstDecimals<61>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<62>
impl Sub<ConstDecimals<54>> for ConstDecimals<62>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<63>
impl Sub<ConstDecimals<54>> for ConstDecimals<63>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<54>> for ConstDecimals<64>
impl Sub<ConstDecimals<54>> for ConstDecimals<64>
type Output = ConstDecimals<10>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<0>
impl Sub<ConstDecimals<55>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<1>
impl Sub<ConstDecimals<55>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<2>
impl Sub<ConstDecimals<55>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<3>
impl Sub<ConstDecimals<55>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<4>
impl Sub<ConstDecimals<55>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<5>
impl Sub<ConstDecimals<55>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<6>
impl Sub<ConstDecimals<55>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<7>
impl Sub<ConstDecimals<55>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<8>
impl Sub<ConstDecimals<55>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<9>
impl Sub<ConstDecimals<55>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<10>
impl Sub<ConstDecimals<55>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<11>
impl Sub<ConstDecimals<55>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<12>
impl Sub<ConstDecimals<55>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<13>
impl Sub<ConstDecimals<55>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<14>
impl Sub<ConstDecimals<55>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<15>
impl Sub<ConstDecimals<55>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<16>
impl Sub<ConstDecimals<55>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<17>
impl Sub<ConstDecimals<55>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<18>
impl Sub<ConstDecimals<55>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<19>
impl Sub<ConstDecimals<55>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<20>
impl Sub<ConstDecimals<55>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<21>
impl Sub<ConstDecimals<55>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<22>
impl Sub<ConstDecimals<55>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<23>
impl Sub<ConstDecimals<55>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<24>
impl Sub<ConstDecimals<55>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<25>
impl Sub<ConstDecimals<55>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<26>
impl Sub<ConstDecimals<55>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<27>
impl Sub<ConstDecimals<55>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<28>
impl Sub<ConstDecimals<55>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<29>
impl Sub<ConstDecimals<55>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<30>
impl Sub<ConstDecimals<55>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<31>
impl Sub<ConstDecimals<55>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<32>
impl Sub<ConstDecimals<55>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<33>
impl Sub<ConstDecimals<55>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<34>
impl Sub<ConstDecimals<55>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<35>
impl Sub<ConstDecimals<55>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<36>
impl Sub<ConstDecimals<55>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<37>
impl Sub<ConstDecimals<55>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<38>
impl Sub<ConstDecimals<55>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<39>
impl Sub<ConstDecimals<55>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<40>
impl Sub<ConstDecimals<55>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<41>
impl Sub<ConstDecimals<55>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<42>
impl Sub<ConstDecimals<55>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<43>
impl Sub<ConstDecimals<55>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<44>
impl Sub<ConstDecimals<55>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<45>
impl Sub<ConstDecimals<55>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<46>
impl Sub<ConstDecimals<55>> for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<47>
impl Sub<ConstDecimals<55>> for ConstDecimals<47>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<48>
impl Sub<ConstDecimals<55>> for ConstDecimals<48>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<49>
impl Sub<ConstDecimals<55>> for ConstDecimals<49>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<50>
impl Sub<ConstDecimals<55>> for ConstDecimals<50>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<51>
impl Sub<ConstDecimals<55>> for ConstDecimals<51>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<52>
impl Sub<ConstDecimals<55>> for ConstDecimals<52>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<53>
impl Sub<ConstDecimals<55>> for ConstDecimals<53>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<54>
impl Sub<ConstDecimals<55>> for ConstDecimals<54>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<56>
impl Sub<ConstDecimals<55>> for ConstDecimals<56>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<57>
impl Sub<ConstDecimals<55>> for ConstDecimals<57>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<58>
impl Sub<ConstDecimals<55>> for ConstDecimals<58>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<59>
impl Sub<ConstDecimals<55>> for ConstDecimals<59>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<60>
impl Sub<ConstDecimals<55>> for ConstDecimals<60>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<61>
impl Sub<ConstDecimals<55>> for ConstDecimals<61>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<62>
impl Sub<ConstDecimals<55>> for ConstDecimals<62>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<63>
impl Sub<ConstDecimals<55>> for ConstDecimals<63>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<55>> for ConstDecimals<64>
impl Sub<ConstDecimals<55>> for ConstDecimals<64>
type Output = ConstDecimals<9>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<0>
impl Sub<ConstDecimals<56>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<1>
impl Sub<ConstDecimals<56>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<2>
impl Sub<ConstDecimals<56>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<3>
impl Sub<ConstDecimals<56>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<4>
impl Sub<ConstDecimals<56>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<5>
impl Sub<ConstDecimals<56>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<6>
impl Sub<ConstDecimals<56>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<7>
impl Sub<ConstDecimals<56>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<8>
impl Sub<ConstDecimals<56>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<9>
impl Sub<ConstDecimals<56>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<10>
impl Sub<ConstDecimals<56>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<11>
impl Sub<ConstDecimals<56>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<12>
impl Sub<ConstDecimals<56>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<13>
impl Sub<ConstDecimals<56>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<14>
impl Sub<ConstDecimals<56>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<15>
impl Sub<ConstDecimals<56>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<16>
impl Sub<ConstDecimals<56>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<17>
impl Sub<ConstDecimals<56>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<18>
impl Sub<ConstDecimals<56>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<19>
impl Sub<ConstDecimals<56>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<20>
impl Sub<ConstDecimals<56>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<21>
impl Sub<ConstDecimals<56>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<22>
impl Sub<ConstDecimals<56>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<23>
impl Sub<ConstDecimals<56>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<24>
impl Sub<ConstDecimals<56>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<25>
impl Sub<ConstDecimals<56>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<26>
impl Sub<ConstDecimals<56>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<27>
impl Sub<ConstDecimals<56>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<28>
impl Sub<ConstDecimals<56>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<29>
impl Sub<ConstDecimals<56>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<30>
impl Sub<ConstDecimals<56>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<31>
impl Sub<ConstDecimals<56>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<32>
impl Sub<ConstDecimals<56>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<33>
impl Sub<ConstDecimals<56>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<34>
impl Sub<ConstDecimals<56>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<35>
impl Sub<ConstDecimals<56>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<36>
impl Sub<ConstDecimals<56>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<37>
impl Sub<ConstDecimals<56>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<38>
impl Sub<ConstDecimals<56>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<39>
impl Sub<ConstDecimals<56>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<40>
impl Sub<ConstDecimals<56>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<41>
impl Sub<ConstDecimals<56>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<42>
impl Sub<ConstDecimals<56>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<43>
impl Sub<ConstDecimals<56>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<44>
impl Sub<ConstDecimals<56>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<45>
impl Sub<ConstDecimals<56>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<46>
impl Sub<ConstDecimals<56>> for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<47>
impl Sub<ConstDecimals<56>> for ConstDecimals<47>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<48>
impl Sub<ConstDecimals<56>> for ConstDecimals<48>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<49>
impl Sub<ConstDecimals<56>> for ConstDecimals<49>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<50>
impl Sub<ConstDecimals<56>> for ConstDecimals<50>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<51>
impl Sub<ConstDecimals<56>> for ConstDecimals<51>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<52>
impl Sub<ConstDecimals<56>> for ConstDecimals<52>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<53>
impl Sub<ConstDecimals<56>> for ConstDecimals<53>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<54>
impl Sub<ConstDecimals<56>> for ConstDecimals<54>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<55>
impl Sub<ConstDecimals<56>> for ConstDecimals<55>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<57>
impl Sub<ConstDecimals<56>> for ConstDecimals<57>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<58>
impl Sub<ConstDecimals<56>> for ConstDecimals<58>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<59>
impl Sub<ConstDecimals<56>> for ConstDecimals<59>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<60>
impl Sub<ConstDecimals<56>> for ConstDecimals<60>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<61>
impl Sub<ConstDecimals<56>> for ConstDecimals<61>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<62>
impl Sub<ConstDecimals<56>> for ConstDecimals<62>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<63>
impl Sub<ConstDecimals<56>> for ConstDecimals<63>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<56>> for ConstDecimals<64>
impl Sub<ConstDecimals<56>> for ConstDecimals<64>
type Output = ConstDecimals<8>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<0>
impl Sub<ConstDecimals<57>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<1>
impl Sub<ConstDecimals<57>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<2>
impl Sub<ConstDecimals<57>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<3>
impl Sub<ConstDecimals<57>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<4>
impl Sub<ConstDecimals<57>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<5>
impl Sub<ConstDecimals<57>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<6>
impl Sub<ConstDecimals<57>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<7>
impl Sub<ConstDecimals<57>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<8>
impl Sub<ConstDecimals<57>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<9>
impl Sub<ConstDecimals<57>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<10>
impl Sub<ConstDecimals<57>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<11>
impl Sub<ConstDecimals<57>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<12>
impl Sub<ConstDecimals<57>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<13>
impl Sub<ConstDecimals<57>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<14>
impl Sub<ConstDecimals<57>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<15>
impl Sub<ConstDecimals<57>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<16>
impl Sub<ConstDecimals<57>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<17>
impl Sub<ConstDecimals<57>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<18>
impl Sub<ConstDecimals<57>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<19>
impl Sub<ConstDecimals<57>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<20>
impl Sub<ConstDecimals<57>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<21>
impl Sub<ConstDecimals<57>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<22>
impl Sub<ConstDecimals<57>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<23>
impl Sub<ConstDecimals<57>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<24>
impl Sub<ConstDecimals<57>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<25>
impl Sub<ConstDecimals<57>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<26>
impl Sub<ConstDecimals<57>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<27>
impl Sub<ConstDecimals<57>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<28>
impl Sub<ConstDecimals<57>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<29>
impl Sub<ConstDecimals<57>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<30>
impl Sub<ConstDecimals<57>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<31>
impl Sub<ConstDecimals<57>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<32>
impl Sub<ConstDecimals<57>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<33>
impl Sub<ConstDecimals<57>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<34>
impl Sub<ConstDecimals<57>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<35>
impl Sub<ConstDecimals<57>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<36>
impl Sub<ConstDecimals<57>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<37>
impl Sub<ConstDecimals<57>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<38>
impl Sub<ConstDecimals<57>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<39>
impl Sub<ConstDecimals<57>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<40>
impl Sub<ConstDecimals<57>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<41>
impl Sub<ConstDecimals<57>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<42>
impl Sub<ConstDecimals<57>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<43>
impl Sub<ConstDecimals<57>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<44>
impl Sub<ConstDecimals<57>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<45>
impl Sub<ConstDecimals<57>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<46>
impl Sub<ConstDecimals<57>> for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<47>
impl Sub<ConstDecimals<57>> for ConstDecimals<47>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<48>
impl Sub<ConstDecimals<57>> for ConstDecimals<48>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<49>
impl Sub<ConstDecimals<57>> for ConstDecimals<49>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<50>
impl Sub<ConstDecimals<57>> for ConstDecimals<50>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<51>
impl Sub<ConstDecimals<57>> for ConstDecimals<51>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<52>
impl Sub<ConstDecimals<57>> for ConstDecimals<52>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<53>
impl Sub<ConstDecimals<57>> for ConstDecimals<53>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<54>
impl Sub<ConstDecimals<57>> for ConstDecimals<54>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<55>
impl Sub<ConstDecimals<57>> for ConstDecimals<55>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<56>
impl Sub<ConstDecimals<57>> for ConstDecimals<56>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<58>
impl Sub<ConstDecimals<57>> for ConstDecimals<58>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<59>
impl Sub<ConstDecimals<57>> for ConstDecimals<59>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<60>
impl Sub<ConstDecimals<57>> for ConstDecimals<60>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<61>
impl Sub<ConstDecimals<57>> for ConstDecimals<61>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<62>
impl Sub<ConstDecimals<57>> for ConstDecimals<62>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<63>
impl Sub<ConstDecimals<57>> for ConstDecimals<63>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<57>> for ConstDecimals<64>
impl Sub<ConstDecimals<57>> for ConstDecimals<64>
type Output = ConstDecimals<7>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<0>
impl Sub<ConstDecimals<58>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<1>
impl Sub<ConstDecimals<58>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<2>
impl Sub<ConstDecimals<58>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<3>
impl Sub<ConstDecimals<58>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<4>
impl Sub<ConstDecimals<58>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<5>
impl Sub<ConstDecimals<58>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<6>
impl Sub<ConstDecimals<58>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<7>
impl Sub<ConstDecimals<58>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<8>
impl Sub<ConstDecimals<58>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<9>
impl Sub<ConstDecimals<58>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<10>
impl Sub<ConstDecimals<58>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<11>
impl Sub<ConstDecimals<58>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<12>
impl Sub<ConstDecimals<58>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<13>
impl Sub<ConstDecimals<58>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<14>
impl Sub<ConstDecimals<58>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<15>
impl Sub<ConstDecimals<58>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<16>
impl Sub<ConstDecimals<58>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<17>
impl Sub<ConstDecimals<58>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<18>
impl Sub<ConstDecimals<58>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<19>
impl Sub<ConstDecimals<58>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<20>
impl Sub<ConstDecimals<58>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<21>
impl Sub<ConstDecimals<58>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<22>
impl Sub<ConstDecimals<58>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<23>
impl Sub<ConstDecimals<58>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<24>
impl Sub<ConstDecimals<58>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<25>
impl Sub<ConstDecimals<58>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<26>
impl Sub<ConstDecimals<58>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<27>
impl Sub<ConstDecimals<58>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<28>
impl Sub<ConstDecimals<58>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<29>
impl Sub<ConstDecimals<58>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<30>
impl Sub<ConstDecimals<58>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<31>
impl Sub<ConstDecimals<58>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<32>
impl Sub<ConstDecimals<58>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<33>
impl Sub<ConstDecimals<58>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<34>
impl Sub<ConstDecimals<58>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<35>
impl Sub<ConstDecimals<58>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<36>
impl Sub<ConstDecimals<58>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<37>
impl Sub<ConstDecimals<58>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<38>
impl Sub<ConstDecimals<58>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<39>
impl Sub<ConstDecimals<58>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<40>
impl Sub<ConstDecimals<58>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<41>
impl Sub<ConstDecimals<58>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<42>
impl Sub<ConstDecimals<58>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<43>
impl Sub<ConstDecimals<58>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<44>
impl Sub<ConstDecimals<58>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<45>
impl Sub<ConstDecimals<58>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<46>
impl Sub<ConstDecimals<58>> for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<47>
impl Sub<ConstDecimals<58>> for ConstDecimals<47>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<48>
impl Sub<ConstDecimals<58>> for ConstDecimals<48>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<49>
impl Sub<ConstDecimals<58>> for ConstDecimals<49>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<50>
impl Sub<ConstDecimals<58>> for ConstDecimals<50>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<51>
impl Sub<ConstDecimals<58>> for ConstDecimals<51>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<52>
impl Sub<ConstDecimals<58>> for ConstDecimals<52>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<53>
impl Sub<ConstDecimals<58>> for ConstDecimals<53>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<54>
impl Sub<ConstDecimals<58>> for ConstDecimals<54>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<55>
impl Sub<ConstDecimals<58>> for ConstDecimals<55>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<56>
impl Sub<ConstDecimals<58>> for ConstDecimals<56>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<57>
impl Sub<ConstDecimals<58>> for ConstDecimals<57>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<59>
impl Sub<ConstDecimals<58>> for ConstDecimals<59>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<60>
impl Sub<ConstDecimals<58>> for ConstDecimals<60>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<61>
impl Sub<ConstDecimals<58>> for ConstDecimals<61>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<62>
impl Sub<ConstDecimals<58>> for ConstDecimals<62>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<63>
impl Sub<ConstDecimals<58>> for ConstDecimals<63>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<58>> for ConstDecimals<64>
impl Sub<ConstDecimals<58>> for ConstDecimals<64>
type Output = ConstDecimals<6>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<0>
impl Sub<ConstDecimals<59>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<1>
impl Sub<ConstDecimals<59>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<2>
impl Sub<ConstDecimals<59>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<3>
impl Sub<ConstDecimals<59>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<4>
impl Sub<ConstDecimals<59>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<5>
impl Sub<ConstDecimals<59>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<6>
impl Sub<ConstDecimals<59>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<7>
impl Sub<ConstDecimals<59>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<8>
impl Sub<ConstDecimals<59>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<9>
impl Sub<ConstDecimals<59>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<10>
impl Sub<ConstDecimals<59>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<11>
impl Sub<ConstDecimals<59>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<12>
impl Sub<ConstDecimals<59>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<13>
impl Sub<ConstDecimals<59>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<14>
impl Sub<ConstDecimals<59>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<15>
impl Sub<ConstDecimals<59>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<16>
impl Sub<ConstDecimals<59>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<17>
impl Sub<ConstDecimals<59>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<18>
impl Sub<ConstDecimals<59>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<19>
impl Sub<ConstDecimals<59>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<20>
impl Sub<ConstDecimals<59>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<21>
impl Sub<ConstDecimals<59>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<22>
impl Sub<ConstDecimals<59>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<23>
impl Sub<ConstDecimals<59>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<24>
impl Sub<ConstDecimals<59>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<25>
impl Sub<ConstDecimals<59>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<26>
impl Sub<ConstDecimals<59>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<27>
impl Sub<ConstDecimals<59>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<28>
impl Sub<ConstDecimals<59>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<29>
impl Sub<ConstDecimals<59>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<30>
impl Sub<ConstDecimals<59>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<31>
impl Sub<ConstDecimals<59>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<32>
impl Sub<ConstDecimals<59>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<33>
impl Sub<ConstDecimals<59>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<34>
impl Sub<ConstDecimals<59>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<35>
impl Sub<ConstDecimals<59>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<36>
impl Sub<ConstDecimals<59>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<37>
impl Sub<ConstDecimals<59>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<38>
impl Sub<ConstDecimals<59>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<39>
impl Sub<ConstDecimals<59>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<40>
impl Sub<ConstDecimals<59>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<41>
impl Sub<ConstDecimals<59>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<42>
impl Sub<ConstDecimals<59>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<43>
impl Sub<ConstDecimals<59>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<44>
impl Sub<ConstDecimals<59>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<45>
impl Sub<ConstDecimals<59>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<46>
impl Sub<ConstDecimals<59>> for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<47>
impl Sub<ConstDecimals<59>> for ConstDecimals<47>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<48>
impl Sub<ConstDecimals<59>> for ConstDecimals<48>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<49>
impl Sub<ConstDecimals<59>> for ConstDecimals<49>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<50>
impl Sub<ConstDecimals<59>> for ConstDecimals<50>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<51>
impl Sub<ConstDecimals<59>> for ConstDecimals<51>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<52>
impl Sub<ConstDecimals<59>> for ConstDecimals<52>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<53>
impl Sub<ConstDecimals<59>> for ConstDecimals<53>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<54>
impl Sub<ConstDecimals<59>> for ConstDecimals<54>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<55>
impl Sub<ConstDecimals<59>> for ConstDecimals<55>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<56>
impl Sub<ConstDecimals<59>> for ConstDecimals<56>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<57>
impl Sub<ConstDecimals<59>> for ConstDecimals<57>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<58>
impl Sub<ConstDecimals<59>> for ConstDecimals<58>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<60>
impl Sub<ConstDecimals<59>> for ConstDecimals<60>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<61>
impl Sub<ConstDecimals<59>> for ConstDecimals<61>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<62>
impl Sub<ConstDecimals<59>> for ConstDecimals<62>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<63>
impl Sub<ConstDecimals<59>> for ConstDecimals<63>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<59>> for ConstDecimals<64>
impl Sub<ConstDecimals<59>> for ConstDecimals<64>
type Output = ConstDecimals<5>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<0>
impl Sub<ConstDecimals<60>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<1>
impl Sub<ConstDecimals<60>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<2>
impl Sub<ConstDecimals<60>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<3>
impl Sub<ConstDecimals<60>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<4>
impl Sub<ConstDecimals<60>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<5>
impl Sub<ConstDecimals<60>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<6>
impl Sub<ConstDecimals<60>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<7>
impl Sub<ConstDecimals<60>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<8>
impl Sub<ConstDecimals<60>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<9>
impl Sub<ConstDecimals<60>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<10>
impl Sub<ConstDecimals<60>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<11>
impl Sub<ConstDecimals<60>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<12>
impl Sub<ConstDecimals<60>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<13>
impl Sub<ConstDecimals<60>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<14>
impl Sub<ConstDecimals<60>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<15>
impl Sub<ConstDecimals<60>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<16>
impl Sub<ConstDecimals<60>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<17>
impl Sub<ConstDecimals<60>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<18>
impl Sub<ConstDecimals<60>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<19>
impl Sub<ConstDecimals<60>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<20>
impl Sub<ConstDecimals<60>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<21>
impl Sub<ConstDecimals<60>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<22>
impl Sub<ConstDecimals<60>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<23>
impl Sub<ConstDecimals<60>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<24>
impl Sub<ConstDecimals<60>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<25>
impl Sub<ConstDecimals<60>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<26>
impl Sub<ConstDecimals<60>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<27>
impl Sub<ConstDecimals<60>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<28>
impl Sub<ConstDecimals<60>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<29>
impl Sub<ConstDecimals<60>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<30>
impl Sub<ConstDecimals<60>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<31>
impl Sub<ConstDecimals<60>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<32>
impl Sub<ConstDecimals<60>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<33>
impl Sub<ConstDecimals<60>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<34>
impl Sub<ConstDecimals<60>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<35>
impl Sub<ConstDecimals<60>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<36>
impl Sub<ConstDecimals<60>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<37>
impl Sub<ConstDecimals<60>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<38>
impl Sub<ConstDecimals<60>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<39>
impl Sub<ConstDecimals<60>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<40>
impl Sub<ConstDecimals<60>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<41>
impl Sub<ConstDecimals<60>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<42>
impl Sub<ConstDecimals<60>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<43>
impl Sub<ConstDecimals<60>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<44>
impl Sub<ConstDecimals<60>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<45>
impl Sub<ConstDecimals<60>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<46>
impl Sub<ConstDecimals<60>> for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<47>
impl Sub<ConstDecimals<60>> for ConstDecimals<47>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<48>
impl Sub<ConstDecimals<60>> for ConstDecimals<48>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<49>
impl Sub<ConstDecimals<60>> for ConstDecimals<49>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<50>
impl Sub<ConstDecimals<60>> for ConstDecimals<50>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<51>
impl Sub<ConstDecimals<60>> for ConstDecimals<51>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<52>
impl Sub<ConstDecimals<60>> for ConstDecimals<52>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<53>
impl Sub<ConstDecimals<60>> for ConstDecimals<53>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<54>
impl Sub<ConstDecimals<60>> for ConstDecimals<54>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<55>
impl Sub<ConstDecimals<60>> for ConstDecimals<55>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<56>
impl Sub<ConstDecimals<60>> for ConstDecimals<56>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<57>
impl Sub<ConstDecimals<60>> for ConstDecimals<57>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<58>
impl Sub<ConstDecimals<60>> for ConstDecimals<58>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<59>
impl Sub<ConstDecimals<60>> for ConstDecimals<59>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<61>
impl Sub<ConstDecimals<60>> for ConstDecimals<61>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<62>
impl Sub<ConstDecimals<60>> for ConstDecimals<62>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<63>
impl Sub<ConstDecimals<60>> for ConstDecimals<63>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<60>> for ConstDecimals<64>
impl Sub<ConstDecimals<60>> for ConstDecimals<64>
type Output = ConstDecimals<4>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<0>
impl Sub<ConstDecimals<61>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<1>
impl Sub<ConstDecimals<61>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<2>
impl Sub<ConstDecimals<61>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<3>
impl Sub<ConstDecimals<61>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<4>
impl Sub<ConstDecimals<61>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<5>
impl Sub<ConstDecimals<61>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<6>
impl Sub<ConstDecimals<61>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<7>
impl Sub<ConstDecimals<61>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<8>
impl Sub<ConstDecimals<61>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<9>
impl Sub<ConstDecimals<61>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<10>
impl Sub<ConstDecimals<61>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<11>
impl Sub<ConstDecimals<61>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<12>
impl Sub<ConstDecimals<61>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<13>
impl Sub<ConstDecimals<61>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<14>
impl Sub<ConstDecimals<61>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<15>
impl Sub<ConstDecimals<61>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<16>
impl Sub<ConstDecimals<61>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<17>
impl Sub<ConstDecimals<61>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<18>
impl Sub<ConstDecimals<61>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<19>
impl Sub<ConstDecimals<61>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<20>
impl Sub<ConstDecimals<61>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<21>
impl Sub<ConstDecimals<61>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<22>
impl Sub<ConstDecimals<61>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<23>
impl Sub<ConstDecimals<61>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<24>
impl Sub<ConstDecimals<61>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<25>
impl Sub<ConstDecimals<61>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<26>
impl Sub<ConstDecimals<61>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<27>
impl Sub<ConstDecimals<61>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<28>
impl Sub<ConstDecimals<61>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<29>
impl Sub<ConstDecimals<61>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<30>
impl Sub<ConstDecimals<61>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<31>
impl Sub<ConstDecimals<61>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<32>
impl Sub<ConstDecimals<61>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<33>
impl Sub<ConstDecimals<61>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<34>
impl Sub<ConstDecimals<61>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<35>
impl Sub<ConstDecimals<61>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<36>
impl Sub<ConstDecimals<61>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<37>
impl Sub<ConstDecimals<61>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<38>
impl Sub<ConstDecimals<61>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<39>
impl Sub<ConstDecimals<61>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<40>
impl Sub<ConstDecimals<61>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<41>
impl Sub<ConstDecimals<61>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<42>
impl Sub<ConstDecimals<61>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<43>
impl Sub<ConstDecimals<61>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<44>
impl Sub<ConstDecimals<61>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<45>
impl Sub<ConstDecimals<61>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<46>
impl Sub<ConstDecimals<61>> for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<47>
impl Sub<ConstDecimals<61>> for ConstDecimals<47>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<48>
impl Sub<ConstDecimals<61>> for ConstDecimals<48>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<49>
impl Sub<ConstDecimals<61>> for ConstDecimals<49>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<50>
impl Sub<ConstDecimals<61>> for ConstDecimals<50>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<51>
impl Sub<ConstDecimals<61>> for ConstDecimals<51>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<52>
impl Sub<ConstDecimals<61>> for ConstDecimals<52>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<53>
impl Sub<ConstDecimals<61>> for ConstDecimals<53>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<54>
impl Sub<ConstDecimals<61>> for ConstDecimals<54>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<55>
impl Sub<ConstDecimals<61>> for ConstDecimals<55>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<56>
impl Sub<ConstDecimals<61>> for ConstDecimals<56>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<57>
impl Sub<ConstDecimals<61>> for ConstDecimals<57>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<58>
impl Sub<ConstDecimals<61>> for ConstDecimals<58>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<59>
impl Sub<ConstDecimals<61>> for ConstDecimals<59>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<60>
impl Sub<ConstDecimals<61>> for ConstDecimals<60>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<62>
impl Sub<ConstDecimals<61>> for ConstDecimals<62>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<63>
impl Sub<ConstDecimals<61>> for ConstDecimals<63>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<61>> for ConstDecimals<64>
impl Sub<ConstDecimals<61>> for ConstDecimals<64>
type Output = ConstDecimals<3>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<0>
impl Sub<ConstDecimals<62>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<1>
impl Sub<ConstDecimals<62>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<2>
impl Sub<ConstDecimals<62>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<3>
impl Sub<ConstDecimals<62>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<4>
impl Sub<ConstDecimals<62>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<5>
impl Sub<ConstDecimals<62>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<6>
impl Sub<ConstDecimals<62>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<7>
impl Sub<ConstDecimals<62>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<8>
impl Sub<ConstDecimals<62>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<9>
impl Sub<ConstDecimals<62>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<10>
impl Sub<ConstDecimals<62>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<11>
impl Sub<ConstDecimals<62>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<12>
impl Sub<ConstDecimals<62>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<13>
impl Sub<ConstDecimals<62>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<14>
impl Sub<ConstDecimals<62>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<15>
impl Sub<ConstDecimals<62>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<16>
impl Sub<ConstDecimals<62>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<17>
impl Sub<ConstDecimals<62>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<18>
impl Sub<ConstDecimals<62>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<19>
impl Sub<ConstDecimals<62>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<20>
impl Sub<ConstDecimals<62>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<21>
impl Sub<ConstDecimals<62>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<22>
impl Sub<ConstDecimals<62>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<23>
impl Sub<ConstDecimals<62>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<24>
impl Sub<ConstDecimals<62>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<25>
impl Sub<ConstDecimals<62>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<26>
impl Sub<ConstDecimals<62>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<27>
impl Sub<ConstDecimals<62>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<28>
impl Sub<ConstDecimals<62>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<29>
impl Sub<ConstDecimals<62>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<30>
impl Sub<ConstDecimals<62>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<31>
impl Sub<ConstDecimals<62>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<32>
impl Sub<ConstDecimals<62>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<33>
impl Sub<ConstDecimals<62>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<34>
impl Sub<ConstDecimals<62>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<35>
impl Sub<ConstDecimals<62>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<36>
impl Sub<ConstDecimals<62>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<37>
impl Sub<ConstDecimals<62>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<38>
impl Sub<ConstDecimals<62>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<39>
impl Sub<ConstDecimals<62>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<40>
impl Sub<ConstDecimals<62>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<41>
impl Sub<ConstDecimals<62>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<42>
impl Sub<ConstDecimals<62>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<43>
impl Sub<ConstDecimals<62>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<44>
impl Sub<ConstDecimals<62>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<45>
impl Sub<ConstDecimals<62>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<46>
impl Sub<ConstDecimals<62>> for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<47>
impl Sub<ConstDecimals<62>> for ConstDecimals<47>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<48>
impl Sub<ConstDecimals<62>> for ConstDecimals<48>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<49>
impl Sub<ConstDecimals<62>> for ConstDecimals<49>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<50>
impl Sub<ConstDecimals<62>> for ConstDecimals<50>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<51>
impl Sub<ConstDecimals<62>> for ConstDecimals<51>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<52>
impl Sub<ConstDecimals<62>> for ConstDecimals<52>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<53>
impl Sub<ConstDecimals<62>> for ConstDecimals<53>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<54>
impl Sub<ConstDecimals<62>> for ConstDecimals<54>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<55>
impl Sub<ConstDecimals<62>> for ConstDecimals<55>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<56>
impl Sub<ConstDecimals<62>> for ConstDecimals<56>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<57>
impl Sub<ConstDecimals<62>> for ConstDecimals<57>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<58>
impl Sub<ConstDecimals<62>> for ConstDecimals<58>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<59>
impl Sub<ConstDecimals<62>> for ConstDecimals<59>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<60>
impl Sub<ConstDecimals<62>> for ConstDecimals<60>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<61>
impl Sub<ConstDecimals<62>> for ConstDecimals<61>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<63>
impl Sub<ConstDecimals<62>> for ConstDecimals<63>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<62>> for ConstDecimals<64>
impl Sub<ConstDecimals<62>> for ConstDecimals<64>
type Output = ConstDecimals<2>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<0>
impl Sub<ConstDecimals<63>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<1>
impl Sub<ConstDecimals<63>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<2>
impl Sub<ConstDecimals<63>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<3>
impl Sub<ConstDecimals<63>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<4>
impl Sub<ConstDecimals<63>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<5>
impl Sub<ConstDecimals<63>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<6>
impl Sub<ConstDecimals<63>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<7>
impl Sub<ConstDecimals<63>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<8>
impl Sub<ConstDecimals<63>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<9>
impl Sub<ConstDecimals<63>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<10>
impl Sub<ConstDecimals<63>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<11>
impl Sub<ConstDecimals<63>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<12>
impl Sub<ConstDecimals<63>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<13>
impl Sub<ConstDecimals<63>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<14>
impl Sub<ConstDecimals<63>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<15>
impl Sub<ConstDecimals<63>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<16>
impl Sub<ConstDecimals<63>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<17>
impl Sub<ConstDecimals<63>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<18>
impl Sub<ConstDecimals<63>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<19>
impl Sub<ConstDecimals<63>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<20>
impl Sub<ConstDecimals<63>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<21>
impl Sub<ConstDecimals<63>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<22>
impl Sub<ConstDecimals<63>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<23>
impl Sub<ConstDecimals<63>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<24>
impl Sub<ConstDecimals<63>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<25>
impl Sub<ConstDecimals<63>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<26>
impl Sub<ConstDecimals<63>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<27>
impl Sub<ConstDecimals<63>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<28>
impl Sub<ConstDecimals<63>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<29>
impl Sub<ConstDecimals<63>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<30>
impl Sub<ConstDecimals<63>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<31>
impl Sub<ConstDecimals<63>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<32>
impl Sub<ConstDecimals<63>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<33>
impl Sub<ConstDecimals<63>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<34>
impl Sub<ConstDecimals<63>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<35>
impl Sub<ConstDecimals<63>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<36>
impl Sub<ConstDecimals<63>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<37>
impl Sub<ConstDecimals<63>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<38>
impl Sub<ConstDecimals<63>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<39>
impl Sub<ConstDecimals<63>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<40>
impl Sub<ConstDecimals<63>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<41>
impl Sub<ConstDecimals<63>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<42>
impl Sub<ConstDecimals<63>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<43>
impl Sub<ConstDecimals<63>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<44>
impl Sub<ConstDecimals<63>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<45>
impl Sub<ConstDecimals<63>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<46>
impl Sub<ConstDecimals<63>> for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<47>
impl Sub<ConstDecimals<63>> for ConstDecimals<47>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<48>
impl Sub<ConstDecimals<63>> for ConstDecimals<48>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<49>
impl Sub<ConstDecimals<63>> for ConstDecimals<49>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<50>
impl Sub<ConstDecimals<63>> for ConstDecimals<50>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<51>
impl Sub<ConstDecimals<63>> for ConstDecimals<51>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<52>
impl Sub<ConstDecimals<63>> for ConstDecimals<52>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<53>
impl Sub<ConstDecimals<63>> for ConstDecimals<53>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<54>
impl Sub<ConstDecimals<63>> for ConstDecimals<54>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<55>
impl Sub<ConstDecimals<63>> for ConstDecimals<55>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<56>
impl Sub<ConstDecimals<63>> for ConstDecimals<56>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<57>
impl Sub<ConstDecimals<63>> for ConstDecimals<57>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<58>
impl Sub<ConstDecimals<63>> for ConstDecimals<58>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<59>
impl Sub<ConstDecimals<63>> for ConstDecimals<59>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<60>
impl Sub<ConstDecimals<63>> for ConstDecimals<60>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<61>
impl Sub<ConstDecimals<63>> for ConstDecimals<61>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<62>
impl Sub<ConstDecimals<63>> for ConstDecimals<62>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<63>> for ConstDecimals<64>
impl Sub<ConstDecimals<63>> for ConstDecimals<64>
type Output = ConstDecimals<1>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<0>
impl Sub<ConstDecimals<64>> for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<1>
impl Sub<ConstDecimals<64>> for ConstDecimals<1>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<2>
impl Sub<ConstDecimals<64>> for ConstDecimals<2>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<3>
impl Sub<ConstDecimals<64>> for ConstDecimals<3>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<4>
impl Sub<ConstDecimals<64>> for ConstDecimals<4>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<5>
impl Sub<ConstDecimals<64>> for ConstDecimals<5>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<6>
impl Sub<ConstDecimals<64>> for ConstDecimals<6>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<7>
impl Sub<ConstDecimals<64>> for ConstDecimals<7>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<8>
impl Sub<ConstDecimals<64>> for ConstDecimals<8>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<9>
impl Sub<ConstDecimals<64>> for ConstDecimals<9>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<10>
impl Sub<ConstDecimals<64>> for ConstDecimals<10>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<11>
impl Sub<ConstDecimals<64>> for ConstDecimals<11>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<12>
impl Sub<ConstDecimals<64>> for ConstDecimals<12>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<13>
impl Sub<ConstDecimals<64>> for ConstDecimals<13>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<14>
impl Sub<ConstDecimals<64>> for ConstDecimals<14>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<15>
impl Sub<ConstDecimals<64>> for ConstDecimals<15>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<16>
impl Sub<ConstDecimals<64>> for ConstDecimals<16>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<17>
impl Sub<ConstDecimals<64>> for ConstDecimals<17>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<18>
impl Sub<ConstDecimals<64>> for ConstDecimals<18>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<19>
impl Sub<ConstDecimals<64>> for ConstDecimals<19>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<20>
impl Sub<ConstDecimals<64>> for ConstDecimals<20>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<21>
impl Sub<ConstDecimals<64>> for ConstDecimals<21>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<22>
impl Sub<ConstDecimals<64>> for ConstDecimals<22>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<23>
impl Sub<ConstDecimals<64>> for ConstDecimals<23>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<24>
impl Sub<ConstDecimals<64>> for ConstDecimals<24>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<25>
impl Sub<ConstDecimals<64>> for ConstDecimals<25>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<26>
impl Sub<ConstDecimals<64>> for ConstDecimals<26>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<27>
impl Sub<ConstDecimals<64>> for ConstDecimals<27>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<28>
impl Sub<ConstDecimals<64>> for ConstDecimals<28>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<29>
impl Sub<ConstDecimals<64>> for ConstDecimals<29>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<30>
impl Sub<ConstDecimals<64>> for ConstDecimals<30>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<31>
impl Sub<ConstDecimals<64>> for ConstDecimals<31>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<32>
impl Sub<ConstDecimals<64>> for ConstDecimals<32>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<33>
impl Sub<ConstDecimals<64>> for ConstDecimals<33>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<34>
impl Sub<ConstDecimals<64>> for ConstDecimals<34>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<35>
impl Sub<ConstDecimals<64>> for ConstDecimals<35>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<36>
impl Sub<ConstDecimals<64>> for ConstDecimals<36>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<37>
impl Sub<ConstDecimals<64>> for ConstDecimals<37>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<38>
impl Sub<ConstDecimals<64>> for ConstDecimals<38>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<39>
impl Sub<ConstDecimals<64>> for ConstDecimals<39>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<40>
impl Sub<ConstDecimals<64>> for ConstDecimals<40>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<41>
impl Sub<ConstDecimals<64>> for ConstDecimals<41>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<42>
impl Sub<ConstDecimals<64>> for ConstDecimals<42>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<43>
impl Sub<ConstDecimals<64>> for ConstDecimals<43>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<44>
impl Sub<ConstDecimals<64>> for ConstDecimals<44>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<45>
impl Sub<ConstDecimals<64>> for ConstDecimals<45>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<46>
impl Sub<ConstDecimals<64>> for ConstDecimals<46>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<47>
impl Sub<ConstDecimals<64>> for ConstDecimals<47>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<48>
impl Sub<ConstDecimals<64>> for ConstDecimals<48>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<49>
impl Sub<ConstDecimals<64>> for ConstDecimals<49>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<50>
impl Sub<ConstDecimals<64>> for ConstDecimals<50>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<51>
impl Sub<ConstDecimals<64>> for ConstDecimals<51>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<52>
impl Sub<ConstDecimals<64>> for ConstDecimals<52>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<53>
impl Sub<ConstDecimals<64>> for ConstDecimals<53>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<54>
impl Sub<ConstDecimals<64>> for ConstDecimals<54>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<55>
impl Sub<ConstDecimals<64>> for ConstDecimals<55>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<56>
impl Sub<ConstDecimals<64>> for ConstDecimals<56>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<57>
impl Sub<ConstDecimals<64>> for ConstDecimals<57>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<58>
impl Sub<ConstDecimals<64>> for ConstDecimals<58>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<59>
impl Sub<ConstDecimals<64>> for ConstDecimals<59>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<60>
impl Sub<ConstDecimals<64>> for ConstDecimals<60>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<61>
impl Sub<ConstDecimals<64>> for ConstDecimals<61>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<62>
impl Sub<ConstDecimals<64>> for ConstDecimals<62>
type Output = ConstDecimals<0>
Source§impl Sub<ConstDecimals<64>> for ConstDecimals<63>
impl Sub<ConstDecimals<64>> for ConstDecimals<63>
type Output = ConstDecimals<0>
Source§impl Sub<BigUint> for &multiversx_sc_snippets::imports::RustBigUint
impl Sub<BigUint> for &multiversx_sc_snippets::imports::RustBigUint
1.74.0 · Source§impl<'a> Sub<Saturating<i8>> for &'a Saturating<i8>
impl<'a> Sub<Saturating<i8>> for &'a Saturating<i8>
1.74.0 · Source§impl<'a> Sub<Saturating<i16>> for &'a Saturating<i16>
impl<'a> Sub<Saturating<i16>> for &'a Saturating<i16>
1.74.0 · Source§impl<'a> Sub<Saturating<i32>> for &'a Saturating<i32>
impl<'a> Sub<Saturating<i32>> for &'a Saturating<i32>
1.74.0 · Source§impl<'a> Sub<Saturating<i64>> for &'a Saturating<i64>
impl<'a> Sub<Saturating<i64>> for &'a Saturating<i64>
1.74.0 · Source§impl<'a> Sub<Saturating<i128>> for &'a Saturating<i128>
impl<'a> Sub<Saturating<i128>> for &'a Saturating<i128>
1.74.0 · Source§impl<'a> Sub<Saturating<isize>> for &'a Saturating<isize>
impl<'a> Sub<Saturating<isize>> for &'a Saturating<isize>
1.74.0 · Source§impl<'a> Sub<Saturating<u8>> for &'a Saturating<u8>
impl<'a> Sub<Saturating<u8>> for &'a Saturating<u8>
1.74.0 · Source§impl<'a> Sub<Saturating<u16>> for &'a Saturating<u16>
impl<'a> Sub<Saturating<u16>> for &'a Saturating<u16>
1.74.0 · Source§impl<'a> Sub<Saturating<u32>> for &'a Saturating<u32>
impl<'a> Sub<Saturating<u32>> for &'a Saturating<u32>
1.74.0 · Source§impl<'a> Sub<Saturating<u64>> for &'a Saturating<u64>
impl<'a> Sub<Saturating<u64>> for &'a Saturating<u64>
1.74.0 · Source§impl<'a> Sub<Saturating<u128>> for &'a Saturating<u128>
impl<'a> Sub<Saturating<u128>> for &'a Saturating<u128>
1.74.0 · Source§impl<'a> Sub<Saturating<usize>> for &'a Saturating<usize>
impl<'a> Sub<Saturating<usize>> for &'a Saturating<usize>
Source§impl<'a> Sub<EdwardsPoint> for &'a EdwardsPoint
impl<'a> Sub<EdwardsPoint> for &'a EdwardsPoint
type Output = EdwardsPoint
Source§impl<'a> Sub<RistrettoPoint> for &'a RistrettoPoint
impl<'a> Sub<RistrettoPoint> for &'a RistrettoPoint
type Output = RistrettoPoint
Source§impl<'a, 'b> Sub<&'b EdwardsPoint> for &'a EdwardsPoint
impl<'a, 'b> Sub<&'b EdwardsPoint> for &'a EdwardsPoint
type Output = EdwardsPoint
Source§impl<'a, 'b> Sub<&'b RistrettoPoint> for &'a RistrettoPoint
impl<'a, 'b> Sub<&'b RistrettoPoint> for &'a RistrettoPoint
type Output = RistrettoPoint
Source§impl<'a, 'b> Sub<&'b AffineNielsPoint> for &'a EdwardsPoint
impl<'a, 'b> Sub<&'b AffineNielsPoint> for &'a EdwardsPoint
Source§impl<'a, 'b> Sub<&'b ProjectiveNielsPoint> for &'a EdwardsPoint
impl<'a, 'b> Sub<&'b ProjectiveNielsPoint> for &'a EdwardsPoint
Source§impl<'a, 'b, M> Sub<&'b BigInt<M>> for &'a multiversx_sc_snippets::imports::BigInt<M>where
M: ManagedTypeApi,
impl<'a, 'b, M> Sub<&'b BigInt<M>> for &'a multiversx_sc_snippets::imports::BigInt<M>where
M: ManagedTypeApi,
Source§impl<'a, 'b, M> Sub<&'b BigInt<M>> for &'a multiversx_sc_snippets::imports::BigUint<M>where
M: ManagedTypeApi,
impl<'a, 'b, M> Sub<&'b BigInt<M>> for &'a multiversx_sc_snippets::imports::BigUint<M>where
M: ManagedTypeApi,
Source§impl<'a, 'b, M> Sub<&'b BigUint<M>> for &'a multiversx_sc_snippets::imports::BigInt<M>where
M: ManagedTypeApi,
impl<'a, 'b, M> Sub<&'b BigUint<M>> for &'a multiversx_sc_snippets::imports::BigInt<M>where
M: ManagedTypeApi,
Source§impl<'a, 'b, M> Sub<&'b BigUint<M>> for &'a multiversx_sc_snippets::imports::BigUint<M>where
M: ManagedTypeApi,
impl<'a, 'b, M> Sub<&'b BigUint<M>> for &'a multiversx_sc_snippets::imports::BigUint<M>where
M: ManagedTypeApi,
Source§impl<'a, M> Sub<u32> for &'a multiversx_sc_snippets::imports::BigUint<M>where
M: ManagedTypeApi,
impl<'a, M> Sub<u32> for &'a multiversx_sc_snippets::imports::BigUint<M>where
M: ManagedTypeApi,
Source§impl<'a, M> Sub<u64> for &'a multiversx_sc_snippets::imports::BigUint<M>where
M: ManagedTypeApi,
impl<'a, M> Sub<u64> for &'a multiversx_sc_snippets::imports::BigUint<M>where
M: ManagedTypeApi,
Source§impl<'b> Sub<&'b EdwardsPoint> for EdwardsPoint
impl<'b> Sub<&'b EdwardsPoint> for EdwardsPoint
type Output = EdwardsPoint
Source§impl<'b> Sub<&'b RistrettoPoint> for RistrettoPoint
impl<'b> Sub<&'b RistrettoPoint> for RistrettoPoint
type Output = RistrettoPoint
Source§impl<'b, M> Sub<&'b BigUint<M>> for multiversx_sc_snippets::imports::BigUint<M>where
M: ManagedTypeApi,
impl<'b, M> Sub<&'b BigUint<M>> for multiversx_sc_snippets::imports::BigUint<M>where
M: ManagedTypeApi,
Source§impl<M> Sub for multiversx_sc_snippets::imports::BigInt<M>where
M: ManagedTypeApi,
impl<M> Sub for multiversx_sc_snippets::imports::BigInt<M>where
M: ManagedTypeApi,
Source§impl<M> Sub for multiversx_sc_snippets::imports::BigUint<M>where
M: ManagedTypeApi,
impl<M> Sub for multiversx_sc_snippets::imports::BigUint<M>where
M: ManagedTypeApi,
Source§impl<M> Sub for ManagedDecimal<M, usize>where
M: ManagedTypeApi,
impl<M> Sub for ManagedDecimal<M, usize>where
M: ManagedTypeApi,
type Output = ManagedDecimal<M, usize>
Source§impl<M> Sub for ManagedDecimalSigned<M, usize>where
M: ManagedTypeApi,
impl<M> Sub for ManagedDecimalSigned<M, usize>where
M: ManagedTypeApi,
type Output = ManagedDecimalSigned<M, usize>
Source§impl<M> Sub<BigInt<M>> for multiversx_sc_snippets::imports::BigUint<M>where
M: ManagedTypeApi,
impl<M> Sub<BigInt<M>> for multiversx_sc_snippets::imports::BigUint<M>where
M: ManagedTypeApi,
Source§impl<M> Sub<BigUint<M>> for multiversx_sc_snippets::imports::BigInt<M>where
M: ManagedTypeApi,
impl<M> Sub<BigUint<M>> for multiversx_sc_snippets::imports::BigInt<M>where
M: ManagedTypeApi,
Source§impl<M, const DECIMALS: usize> Sub for ManagedDecimal<M, ConstDecimals<DECIMALS>>where
M: ManagedTypeApi,
impl<M, const DECIMALS: usize> Sub for ManagedDecimal<M, ConstDecimals<DECIMALS>>where
M: ManagedTypeApi,
type Output = ManagedDecimal<M, ConstDecimals<DECIMALS>>
Source§impl<M, const DECIMALS: usize> Sub for ManagedDecimalSigned<M, ConstDecimals<DECIMALS>>where
M: ManagedTypeApi,
impl<M, const DECIMALS: usize> Sub for ManagedDecimalSigned<M, ConstDecimals<DECIMALS>>where
M: ManagedTypeApi,
type Output = ManagedDecimalSigned<M, ConstDecimals<DECIMALS>>
Source§impl<Ul, Bl, Ur> Sub<Ur> for UInt<Ul, Bl>
Subtracting unsigned integers. We just do our PrivateSub
and then Trim
the output.
impl<Ul, Bl, Ur> Sub<Ur> for UInt<Ul, Bl>
Subtracting unsigned integers. We just do our PrivateSub
and then Trim
the output.