pub struct UpdateOauth2CredentialIntent {
pub oauth2_credential_id: String,
pub provider: Oauth2Provider,
pub client_id: String,
pub encrypted_client_secret: String,
}
Fields§
§oauth2_credential_id: String
@inject_tag: validate:“required”
provider: Oauth2Provider
@inject_tag: validate:“required”
client_id: String
@inject_tag: validate:“required”
encrypted_client_secret: String
@inject_tag: validate:“required”
Trait Implementations§
Source§impl Clone for UpdateOauth2CredentialIntent
impl Clone for UpdateOauth2CredentialIntent
Source§fn clone(&self) -> UpdateOauth2CredentialIntent
fn clone(&self) -> UpdateOauth2CredentialIntent
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 UpdateOauth2CredentialIntent
impl Debug for UpdateOauth2CredentialIntent
Source§impl<'de> Deserialize<'de> for UpdateOauth2CredentialIntent
impl<'de> Deserialize<'de> for UpdateOauth2CredentialIntent
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 UpdateOauth2CredentialIntent
impl PartialEq for UpdateOauth2CredentialIntent
Source§fn eq(&self, other: &UpdateOauth2CredentialIntent) -> bool
fn eq(&self, other: &UpdateOauth2CredentialIntent) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateOauth2CredentialIntent
Auto Trait Implementations§
impl Freeze for UpdateOauth2CredentialIntent
impl RefUnwindSafe for UpdateOauth2CredentialIntent
impl Send for UpdateOauth2CredentialIntent
impl Sync for UpdateOauth2CredentialIntent
impl Unpin for UpdateOauth2CredentialIntent
impl UnwindSafe for UpdateOauth2CredentialIntent
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