(scid: u64)
| 254 | } |
| 255 | impl From<u64> for ShortChannelId { |
| 256 | fn from(scid: u64) -> Self { |
| 257 | ShortChannelId(scid) |
| 258 | } |
| 259 | } |
| 260 | impl Display for ShortChannelId { |
| 261 | fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { |
nothing calls this directly
no test coverage detected