#[non_exhaustive]pub struct CustomConnectorProfileProperties { /* private fields */ }
Expand description
The profile properties required by the custom connector.
Implementations
sourceimpl CustomConnectorProfileProperties
impl CustomConnectorProfileProperties
sourcepub fn profile_properties(&self) -> Option<&HashMap<String, String>>
pub fn profile_properties(&self) -> Option<&HashMap<String, String>>
A map of properties that are required to create a profile for the custom connector.
sourcepub fn o_auth2_properties(&self) -> Option<&OAuth2Properties>
pub fn o_auth2_properties(&self) -> Option<&OAuth2Properties>
The OAuth 2.0 properties required for OAuth 2.0 authentication.
sourceimpl CustomConnectorProfileProperties
impl CustomConnectorProfileProperties
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CustomConnectorProfileProperties
.
Trait Implementations
sourceimpl Clone for CustomConnectorProfileProperties
impl Clone for CustomConnectorProfileProperties
sourcefn clone(&self) -> CustomConnectorProfileProperties
fn clone(&self) -> CustomConnectorProfileProperties
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<CustomConnectorProfileProperties> for CustomConnectorProfileProperties
impl PartialEq<CustomConnectorProfileProperties> for CustomConnectorProfileProperties
sourcefn eq(&self, other: &CustomConnectorProfileProperties) -> bool
fn eq(&self, other: &CustomConnectorProfileProperties) -> bool
impl StructuralPartialEq for CustomConnectorProfileProperties
Auto Trait Implementations
impl RefUnwindSafe for CustomConnectorProfileProperties
impl Send for CustomConnectorProfileProperties
impl Sync for CustomConnectorProfileProperties
impl Unpin for CustomConnectorProfileProperties
impl UnwindSafe for CustomConnectorProfileProperties
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