#[non_exhaustive]pub struct GoogleAnalyticsConnectorProfileCredentials {
pub client_id: String,
pub client_secret: String,
pub access_token: Option<String>,
pub refresh_token: Option<String>,
pub o_auth_request: Option<ConnectorOAuthRequest>,
}
Expand description
The connector-specific profile credentials required by Google Analytics.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
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 Google Analytics resources.
refresh_token: Option<String>
The credentials used to acquire new access tokens. This is required only for OAuth2 access tokens, and is not required for OAuth1 access tokens.
o_auth_request: Option<ConnectorOAuthRequest>
The OAuth requirement needed to request security tokens from the connector endpoint.
Implementations§
source§impl GoogleAnalyticsConnectorProfileCredentials
impl GoogleAnalyticsConnectorProfileCredentials
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 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.
source§impl GoogleAnalyticsConnectorProfileCredentials
impl GoogleAnalyticsConnectorProfileCredentials
sourcepub fn builder() -> GoogleAnalyticsConnectorProfileCredentialsBuilder
pub fn builder() -> GoogleAnalyticsConnectorProfileCredentialsBuilder
Creates a new builder-style object to manufacture GoogleAnalyticsConnectorProfileCredentials
.
Trait Implementations§
source§impl Clone for GoogleAnalyticsConnectorProfileCredentials
impl Clone for GoogleAnalyticsConnectorProfileCredentials
source§fn clone(&self) -> GoogleAnalyticsConnectorProfileCredentials
fn clone(&self) -> GoogleAnalyticsConnectorProfileCredentials
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for GoogleAnalyticsConnectorProfileCredentials
impl PartialEq for GoogleAnalyticsConnectorProfileCredentials
source§fn eq(&self, other: &GoogleAnalyticsConnectorProfileCredentials) -> bool
fn eq(&self, other: &GoogleAnalyticsConnectorProfileCredentials) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GoogleAnalyticsConnectorProfileCredentials
Auto Trait Implementations§
impl Freeze for GoogleAnalyticsConnectorProfileCredentials
impl RefUnwindSafe for GoogleAnalyticsConnectorProfileCredentials
impl Send for GoogleAnalyticsConnectorProfileCredentials
impl Sync for GoogleAnalyticsConnectorProfileCredentials
impl Unpin for GoogleAnalyticsConnectorProfileCredentials
impl UnwindSafe for GoogleAnalyticsConnectorProfileCredentials
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more