pub trait ClientIdProvider {
    fn client_id(&self) -> &str;
}
Expand description

A trait for an auth provider that can provide a client id

Required Methods

Get the client id for this auth provider

Implementors