#[non_exhaustive]pub struct GoogleAnalyticsConnectorProfileCredentials { /* private fields */ }
Expand description
The connector-specific profile credentials required by Google Analytics.
Implementations
sourceimpl GoogleAnalyticsConnectorProfileCredentials
impl GoogleAnalyticsConnectorProfileCredentials
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 Google Analytics resources.
sourcepub fn refresh_token(&self) -> Option<&str>
pub fn refresh_token(&self) -> Option<&str>
The credentials used to acquire new access tokens. This is required only for OAuth2 access tokens, and is not required for OAuth1 access tokens.
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 GoogleAnalyticsConnectorProfileCredentials
impl GoogleAnalyticsConnectorProfileCredentials
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GoogleAnalyticsConnectorProfileCredentials
.
Trait Implementations
sourceimpl Clone for GoogleAnalyticsConnectorProfileCredentials
impl Clone for GoogleAnalyticsConnectorProfileCredentials
sourcefn clone(&self) -> GoogleAnalyticsConnectorProfileCredentials
fn clone(&self) -> GoogleAnalyticsConnectorProfileCredentials
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<GoogleAnalyticsConnectorProfileCredentials> for GoogleAnalyticsConnectorProfileCredentials
impl PartialEq<GoogleAnalyticsConnectorProfileCredentials> for GoogleAnalyticsConnectorProfileCredentials
sourcefn eq(&self, other: &GoogleAnalyticsConnectorProfileCredentials) -> bool
fn eq(&self, other: &GoogleAnalyticsConnectorProfileCredentials) -> bool
impl StructuralPartialEq for GoogleAnalyticsConnectorProfileCredentials
Auto Trait Implementations
impl RefUnwindSafe for GoogleAnalyticsConnectorProfileCredentials
impl Send for GoogleAnalyticsConnectorProfileCredentials
impl Sync for GoogleAnalyticsConnectorProfileCredentials
impl Unpin for GoogleAnalyticsConnectorProfileCredentials
impl UnwindSafe for GoogleAnalyticsConnectorProfileCredentials
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