#[non_exhaustive]pub struct SlackConnectorProfileCredentials { /* private fields */ }
Expand description
The connector-specific profile credentials required when using Slack.
Implementations§
source§impl SlackConnectorProfileCredentials
impl SlackConnectorProfileCredentials
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 Slack 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 SlackConnectorProfileCredentials
impl SlackConnectorProfileCredentials
sourcepub fn builder() -> SlackConnectorProfileCredentialsBuilder
pub fn builder() -> SlackConnectorProfileCredentialsBuilder
Creates a new builder-style object to manufacture SlackConnectorProfileCredentials
.
Trait Implementations§
source§impl Clone for SlackConnectorProfileCredentials
impl Clone for SlackConnectorProfileCredentials
source§fn clone(&self) -> SlackConnectorProfileCredentials
fn clone(&self) -> SlackConnectorProfileCredentials
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<SlackConnectorProfileCredentials> for SlackConnectorProfileCredentials
impl PartialEq<SlackConnectorProfileCredentials> for SlackConnectorProfileCredentials
source§fn eq(&self, other: &SlackConnectorProfileCredentials) -> bool
fn eq(&self, other: &SlackConnectorProfileCredentials) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SlackConnectorProfileCredentials
Auto Trait Implementations§
impl RefUnwindSafe for SlackConnectorProfileCredentials
impl Send for SlackConnectorProfileCredentials
impl Sync for SlackConnectorProfileCredentials
impl Unpin for SlackConnectorProfileCredentials
impl UnwindSafe for SlackConnectorProfileCredentials
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