pub enum BuiltInGrantResponse {
OAuthBearer(OAuthBearerGrantResponse),
ApiKey(ApiKeyGrantResponse),
Basic(BasicGrantResponse),
}Variants§
Implementations§
Source§impl BuiltInGrantResponse
impl BuiltInGrantResponse
pub fn grant_type(&self) -> GrantType
Trait Implementations§
Source§impl Clone for BuiltInGrantResponse
impl Clone for BuiltInGrantResponse
Source§fn clone(&self) -> BuiltInGrantResponse
fn clone(&self) -> BuiltInGrantResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BuiltInGrantResponse
impl Debug for BuiltInGrantResponse
Source§impl PartialEq for BuiltInGrantResponse
impl PartialEq for BuiltInGrantResponse
impl StructuralPartialEq for BuiltInGrantResponse
Auto Trait Implementations§
impl Freeze for BuiltInGrantResponse
impl RefUnwindSafe for BuiltInGrantResponse
impl Send for BuiltInGrantResponse
impl Sync for BuiltInGrantResponse
impl Unpin for BuiltInGrantResponse
impl UnsafeUnpin for BuiltInGrantResponse
impl UnwindSafe for BuiltInGrantResponse
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