pub trait Builder<SCOPE>: DynClonewhere
    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<'clone, SCOPE> Clone for Box<dyn Builder<SCOPE> + 'clone>where SCOPE: Scope + Clone,

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'clone, SCOPE> Clone for Box<dyn Builder<SCOPE> + Send + 'clone>where SCOPE: Scope + Clone,

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'clone, SCOPE> Clone for Box<dyn Builder<SCOPE> + Send + Sync + 'clone>where SCOPE: Scope + Clone,

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'clone, SCOPE> Clone for Box<dyn Builder<SCOPE> + Sync + 'clone>where SCOPE: Scope + Clone,

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<SCOPE> Debug for dyn Builder<SCOPE> + Send + Syncwhere 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 DefaultBuilderwhere SCOPE: Scope,