#[non_exhaustive]pub struct MarketoConnectorProfileCredentials { /* private fields */ }
Expand description
The connector-specific profile credentials required by Marketo.
Implementations
sourceimpl MarketoConnectorProfileCredentials
impl MarketoConnectorProfileCredentials
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 Marketo 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 MarketoConnectorProfileCredentials
impl MarketoConnectorProfileCredentials
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture MarketoConnectorProfileCredentials
.
Trait Implementations
sourceimpl Clone for MarketoConnectorProfileCredentials
impl Clone for MarketoConnectorProfileCredentials
sourcefn clone(&self) -> MarketoConnectorProfileCredentials
fn clone(&self) -> MarketoConnectorProfileCredentials
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<MarketoConnectorProfileCredentials> for MarketoConnectorProfileCredentials
impl PartialEq<MarketoConnectorProfileCredentials> for MarketoConnectorProfileCredentials
sourcefn eq(&self, other: &MarketoConnectorProfileCredentials) -> bool
fn eq(&self, other: &MarketoConnectorProfileCredentials) -> bool
impl StructuralPartialEq for MarketoConnectorProfileCredentials
Auto Trait Implementations
impl RefUnwindSafe for MarketoConnectorProfileCredentials
impl Send for MarketoConnectorProfileCredentials
impl Sync for MarketoConnectorProfileCredentials
impl Unpin for MarketoConnectorProfileCredentials
impl UnwindSafe for MarketoConnectorProfileCredentials
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