Trait Builder

Source
pub trait Builder<SCOPE>: DynClone
where SCOPE: Scope,
{ // Required method fn obtain_user_info( &self, _grant_info: GrantInfo<'_, SCOPE>, _access_token: &AccessTokenResponseSuccessfulBody<SCOPE>, ) -> Result<BuilderObtainUserInfoOutput, BuilderObtainUserInfoError>; }

Required Methods§

Trait Implementations§

Source§

impl<SCOPE> Debug for dyn Builder<SCOPE> + Send + Sync
where SCOPE: Scope,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Implementors§

Source§

impl<SCOPE> Builder<SCOPE> for DefaultBuilder
where SCOPE: Scope,