(self, rhs: Self)
| 207 | type Output = Amount; |
| 208 | |
| 209 | fn sub(self, rhs: Self) -> Self::Output { |
| 210 | Amount { |
| 211 | msat: self.msat - rhs.msat, |
| 212 | } |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | #[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)] |
no outgoing calls