In my Rust Tonic setup, I have configured mTLS (mutual TLS) authentication between client and server.
Now, I would like to use the data stored in client certificate
a) for authorizing access (interceptor)
b) use in providing the service (ie. I want to see Hello Petr if Petr is connecting)
I could not find any examples about this, and traversing Tonic source code didn't help me, too.