#[non_exhaustive]pub struct ZendeskConnectorProfileCredentials {
pub client_id: String,
pub client_secret: String,
pub access_token: Option<String>,
pub o_auth_request: Option<ConnectorOAuthRequest>,
}
Expand description
The connector-specific profile credentials required when using Zendesk.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.client_id: String
The identifier for the desired client.
client_secret: String
The client secret used by the OAuth client to authenticate to the authorization server.
access_token: Option<String>
The credentials used to access protected Zendesk resources.
o_auth_request: Option<ConnectorOAuthRequest>
The OAuth requirement needed to request security tokens from the connector endpoint.
Implementations§
source§impl ZendeskConnectorProfileCredentials
impl ZendeskConnectorProfileCredentials
sourcepub fn client_secret(&self) -> &str
pub fn client_secret(&self) -> &str
The client secret used by the OAuth client to authenticate to the authorization server.
sourcepub fn access_token(&self) -> Option<&str>
pub fn access_token(&self) -> Option<&str>
The credentials used to access protected Zendesk resources.
sourcepub fn o_auth_request(&self) -> Option<&ConnectorOAuthRequest>
pub fn o_auth_request(&self) -> Option<&ConnectorOAuthRequest>
The OAuth requirement needed to request security tokens from the connector endpoint.
source§impl ZendeskConnectorProfileCredentials
impl ZendeskConnectorProfileCredentials
sourcepub fn builder() -> ZendeskConnectorProfileCredentialsBuilder
pub fn builder() -> ZendeskConnectorProfileCredentialsBuilder
Creates a new builder-style object to manufacture ZendeskConnectorProfileCredentials
.
Trait Implementations§
source§impl Clone for ZendeskConnectorProfileCredentials
impl Clone for ZendeskConnectorProfileCredentials
source§fn clone(&self) -> ZendeskConnectorProfileCredentials
fn clone(&self) -> ZendeskConnectorProfileCredentials
Returns a copy 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 PartialEq for ZendeskConnectorProfileCredentials
impl PartialEq for ZendeskConnectorProfileCredentials
source§fn eq(&self, other: &ZendeskConnectorProfileCredentials) -> bool
fn eq(&self, other: &ZendeskConnectorProfileCredentials) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ZendeskConnectorProfileCredentials
Auto Trait Implementations§
impl RefUnwindSafe for ZendeskConnectorProfileCredentials
impl Send for ZendeskConnectorProfileCredentials
impl Sync for ZendeskConnectorProfileCredentials
impl Unpin for ZendeskConnectorProfileCredentials
impl UnwindSafe for ZendeskConnectorProfileCredentials
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.