graph_oauth/identity/
into_credential_builder.rs

1use std::fmt::Debug;
2
3pub trait IntoCredentialBuilder<CredentialBuilder: Clone + Debug> {
4    type Response;
5    type Error: std::error::Error;
6
7    fn into_credential_builder(self) -> Result<(Self::Response, CredentialBuilder), Self::Error>;
8}