Clippy complaints, that PairingSessionData does not implement std::fmt::Debug.
help: the trait `std::fmt::Debug` is not implemented for `PairingSessionData`, which is required by `tokio::sync::mpsc::error::SendError<PairingSessionData>: std::fmt::Debug`
note: add `#[derive(Debug)]` to `PairingSessionData` or manually `impl std::fmt::Debug for PairingSessionData`
help: the trait `std::fmt::Debug` is implemented for `tokio::sync::mpsc::error::SendError<T>`
note: required for `tokio::sync::mpsc::error::SendError<PairingSessionData>` to implement `std::fmt::Debug`
Clippy complaints, that
PairingSessionData
does not implementstd::fmt::Debug
.