[−][src]Struct oxide_auth::code_grant::authorization::Pending
Represents a valid, currently pending authorization request not bound to an owner. The frontend can signal a reponse using this object.
Methods
impl Pending[src]
pub fn deny(self) -> StdResult<Url, Error>[src]
Denies the request, which redirects to the client for which the request originated.
pub fn authorize(
self,
handler: &mut dyn Endpoint,
owner_id: Cow<str>
) -> StdResult<Url, Error>[src]
self,
handler: &mut dyn Endpoint,
owner_id: Cow<str>
) -> StdResult<Url, Error>
Inform the backend about consent from a resource owner.
Use negotiated parameters to authorize a client for an owner. The endpoint SHOULD be the same endpoint as was used to create the pending request.
pub fn pre_grant(&self) -> &PreGrant[src]
Retrieve a reference to the negotiated parameters (e.g. scope). These should be displayed to the resource owner when asking for his authorization.
Auto Trait Implementations
impl Unpin for Pending
impl Send for Pending
impl Sync for Pending
impl RefUnwindSafe for Pending
impl UnwindSafe for Pending
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Erased for T
impl<T> Typeable for T where
T: Any,
T: Any,
impl<T> UnsafeAny for T where
T: Any,
T: Any,
impl<T> IntoCollection<T> for T
fn into_collection<A>(self) -> SmallVec<A> where
A: Array<Item = T>,
A: Array<Item = T>,
fn mapped<U, F, A>(self, f: F) -> SmallVec<A> where
A: Array<Item = U>,
F: FnMut(T) -> U,
A: Array<Item = U>,
F: FnMut(T) -> U,
impl<T, I> AsResult<T, I> for T where
I: Input,
I: Input,