#[non_exhaustive]pub struct SapoDataConnectorProfileProperties {
pub application_host_url: Option<String>,
pub application_service_path: Option<String>,
pub port_number: Option<i32>,
pub client_number: Option<String>,
pub logon_language: Option<String>,
pub private_link_service_name: Option<String>,
pub o_auth_properties: Option<OAuthProperties>,
}
Expand description
The connector-specific profile properties required when using SAPOData.
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.application_host_url: Option<String>
The location of the SAPOData resource.
application_service_path: Option<String>
The application path to catalog service.
port_number: Option<i32>
The port number of the SAPOData instance.
client_number: Option<String>
The client number for the client creating the connection.
logon_language: Option<String>
The logon language of SAPOData instance.
private_link_service_name: Option<String>
The SAPOData Private Link service name to be used for private data transfers.
o_auth_properties: Option<OAuthProperties>
The SAPOData OAuth properties required for OAuth type authentication.
Implementations
sourceimpl SapoDataConnectorProfileProperties
impl SapoDataConnectorProfileProperties
sourcepub fn application_host_url(&self) -> Option<&str>
pub fn application_host_url(&self) -> Option<&str>
The location of the SAPOData resource.
sourcepub fn application_service_path(&self) -> Option<&str>
pub fn application_service_path(&self) -> Option<&str>
The application path to catalog service.
sourcepub fn port_number(&self) -> Option<i32>
pub fn port_number(&self) -> Option<i32>
The port number of the SAPOData instance.
sourcepub fn client_number(&self) -> Option<&str>
pub fn client_number(&self) -> Option<&str>
The client number for the client creating the connection.
sourcepub fn logon_language(&self) -> Option<&str>
pub fn logon_language(&self) -> Option<&str>
The logon language of SAPOData instance.
sourcepub fn private_link_service_name(&self) -> Option<&str>
pub fn private_link_service_name(&self) -> Option<&str>
The SAPOData Private Link service name to be used for private data transfers.
sourcepub fn o_auth_properties(&self) -> Option<&OAuthProperties>
pub fn o_auth_properties(&self) -> Option<&OAuthProperties>
The SAPOData OAuth properties required for OAuth type authentication.
sourceimpl SapoDataConnectorProfileProperties
impl SapoDataConnectorProfileProperties
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SapoDataConnectorProfileProperties
Trait Implementations
sourceimpl Clone for SapoDataConnectorProfileProperties
impl Clone for SapoDataConnectorProfileProperties
sourcefn clone(&self) -> SapoDataConnectorProfileProperties
fn clone(&self) -> SapoDataConnectorProfileProperties
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 more
sourceimpl PartialEq<SapoDataConnectorProfileProperties> for SapoDataConnectorProfileProperties
impl PartialEq<SapoDataConnectorProfileProperties> for SapoDataConnectorProfileProperties
sourcefn eq(&self, other: &SapoDataConnectorProfileProperties) -> bool
fn eq(&self, other: &SapoDataConnectorProfileProperties) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SapoDataConnectorProfileProperties) -> bool
fn ne(&self, other: &SapoDataConnectorProfileProperties) -> bool
This method tests for !=
.
impl StructuralPartialEq for SapoDataConnectorProfileProperties
Auto Trait Implementations
impl RefUnwindSafe for SapoDataConnectorProfileProperties
impl Send for SapoDataConnectorProfileProperties
impl Sync for SapoDataConnectorProfileProperties
impl Unpin for SapoDataConnectorProfileProperties
impl UnwindSafe for SapoDataConnectorProfileProperties
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more