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: ByteArrayImplementations§
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<OauthAuthCodeGrant, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<OauthAuthCodeGrant, <__D as Deserializer<'de>>::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
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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