#[non_exhaustive]pub struct ZendeskConnectorProfileCredentials { /* private fields */ }
Expand description
The connector-specific profile credentials required when using Zendesk.
Implementations
sourceimpl ZendeskConnectorProfileCredentials
impl ZendeskConnectorProfileCredentials
sourcepub fn client_secret(&self) -> Option<&str>
pub fn client_secret(&self) -> Option<&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.
sourceimpl ZendeskConnectorProfileCredentials
impl ZendeskConnectorProfileCredentials
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ZendeskConnectorProfileCredentials
.
Trait Implementations
sourceimpl Clone for ZendeskConnectorProfileCredentials
impl Clone for ZendeskConnectorProfileCredentials
sourcefn clone(&self) -> ZendeskConnectorProfileCredentials
fn clone(&self) -> ZendeskConnectorProfileCredentials
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl PartialEq<ZendeskConnectorProfileCredentials> for ZendeskConnectorProfileCredentials
impl PartialEq<ZendeskConnectorProfileCredentials> for ZendeskConnectorProfileCredentials
sourcefn eq(&self, other: &ZendeskConnectorProfileCredentials) -> bool
fn eq(&self, other: &ZendeskConnectorProfileCredentials) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more