pub struct OauthAuthCodeGrant {
pub name: String,
pub icon_url: String,
pub authorization_url: String,
pub client_id: String,
pub redirect_uri: String,
pub state: String,
pub idp_id: ByteArray,
}
Fields§
§name: String
§icon_url: String
§client_id: String
§redirect_uri: String
§state: String
§idp_id: ByteArray
Implementations§
Trait Implementations§
Source§impl Clone for OauthAuthCodeGrant
impl Clone for OauthAuthCodeGrant
Source§fn clone(&self) -> OauthAuthCodeGrant
fn clone(&self) -> OauthAuthCodeGrant
Returns a duplicate of the value. Read more
1.0.0 · 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 OauthAuthCodeGrant
impl Debug for OauthAuthCodeGrant
Source§impl<'de> Deserialize<'de> for OauthAuthCodeGrant
impl<'de> Deserialize<'de> for OauthAuthCodeGrant
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for OauthAuthCodeGrant
impl PartialEq for OauthAuthCodeGrant
Source§impl Serialize for OauthAuthCodeGrant
impl Serialize for OauthAuthCodeGrant
impl StructuralPartialEq for OauthAuthCodeGrant
Auto Trait Implementations§
impl Freeze for OauthAuthCodeGrant
impl RefUnwindSafe for OauthAuthCodeGrant
impl Send for OauthAuthCodeGrant
impl Sync for OauthAuthCodeGrant
impl Unpin for OauthAuthCodeGrant
impl UnwindSafe for OauthAuthCodeGrant
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