1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
use ;
/// Abstraction over an OAuth 2.0 provider.
///
/// Implement this trait to add a custom provider. The two built-in implementations are
/// [`Google`](super::Google) and [`GitHub`](super::GitHub).
///
/// # Object safety
///
/// `OAuthProvider` is **not** object-safe because `exchange` returns an `impl Future` (RPITIT).
/// Use concrete types or monomorphised generics — do not box this trait.
///
/// # Required methods
///
/// - [`name`](OAuthProvider::name) — returns a stable, lowercase identifier (`"google"`, `"github"`, …).
/// - [`authorize_url`](OAuthProvider::authorize_url) — builds the authorization redirect and
/// issues the PKCE + state cookie.
/// - [`exchange`](OAuthProvider::exchange) — verifies the callback, exchanges the code for a
/// token, and fetches the user profile.