pub struct AccessTokenEndpoint<'a, SCOPE>where
SCOPE: Scope,{ /* private fields */ }
Implementations§
Trait Implementations§
Source§impl<'a, SCOPE> Clone for AccessTokenEndpoint<'a, SCOPE>
impl<'a, SCOPE> Clone for AccessTokenEndpoint<'a, SCOPE>
Source§fn clone(&self) -> AccessTokenEndpoint<'a, SCOPE>
fn clone(&self) -> AccessTokenEndpoint<'a, SCOPE>
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a, SCOPE> Endpoint for AccessTokenEndpoint<'a, SCOPE>
impl<'a, SCOPE> Endpoint for AccessTokenEndpoint<'a, SCOPE>
type RenderRequestError = AccessTokenEndpointError
type ParseResponseOutput = Result<SuccessfulBody<SCOPE>, ErrorBody>
type ParseResponseError = AccessTokenEndpointError
fn render_request(&self) -> Result<Request<Body>, Self::RenderRequestError>
fn parse_response( &self, response: Response<Body>, ) -> Result<Self::ParseResponseOutput, Self::ParseResponseError>
Auto Trait Implementations§
impl<'a, SCOPE> Freeze for AccessTokenEndpoint<'a, SCOPE>
impl<'a, SCOPE> !RefUnwindSafe for AccessTokenEndpoint<'a, SCOPE>
impl<'a, SCOPE> Send for AccessTokenEndpoint<'a, SCOPE>where
SCOPE: Send,
impl<'a, SCOPE> Sync for AccessTokenEndpoint<'a, SCOPE>where
SCOPE: Sync,
impl<'a, SCOPE> Unpin for AccessTokenEndpoint<'a, SCOPE>where
SCOPE: Unpin,
impl<'a, SCOPE> !UnwindSafe for AccessTokenEndpoint<'a, SCOPE>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more