pub struct CredentialWebhookDto {
pub type: TypeTrue,
pub operation: OperationTrue,
pub from: String,
pub connection_id: String,
pub auth_mode: AuthModeTrue,
pub provider_config_key: String,
pub provider: String,
pub environment: String,
pub success: bool,
pub end_user: CredentialEndUser,
pub error: Option<CredentialSessionError>,
}
Fields§
§type: TypeTrue
§operation: OperationTrue
§from: String
§connection_id: String
§auth_mode: AuthModeTrue
§provider_config_key: String
§provider: String
§environment: String
§success: bool
§end_user: CredentialEndUser
§error: Option<CredentialSessionError>
Implementations§
Source§impl CredentialWebhookDto
impl CredentialWebhookDto
pub fn new( type: TypeTrue, operation: OperationTrue, from: String, connection_id: String, auth_mode: AuthModeTrue, provider_config_key: String, provider: String, environment: String, success: bool, end_user: CredentialEndUser, ) -> CredentialWebhookDto
Trait Implementations§
Source§impl Clone for CredentialWebhookDto
impl Clone for CredentialWebhookDto
Source§fn clone(&self) -> CredentialWebhookDto
fn clone(&self) -> CredentialWebhookDto
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CredentialWebhookDto
impl Debug for CredentialWebhookDto
Source§impl Default for CredentialWebhookDto
impl Default for CredentialWebhookDto
Source§fn default() -> CredentialWebhookDto
fn default() -> CredentialWebhookDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CredentialWebhookDto
impl<'de> Deserialize<'de> for CredentialWebhookDto
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 CredentialWebhookDto
impl PartialEq for CredentialWebhookDto
Source§impl Serialize for CredentialWebhookDto
impl Serialize for CredentialWebhookDto
impl StructuralPartialEq for CredentialWebhookDto
Auto Trait Implementations§
impl Freeze for CredentialWebhookDto
impl RefUnwindSafe for CredentialWebhookDto
impl Send for CredentialWebhookDto
impl Sync for CredentialWebhookDto
impl Unpin for CredentialWebhookDto
impl UnwindSafe for CredentialWebhookDto
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