#[non_exhaustive]pub struct GetServiceEndpointOutput {
pub service_type: Option<WirelessGatewayServiceType>,
pub service_endpoint: Option<String>,
pub server_trust: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.service_type: Option<WirelessGatewayServiceType>
The endpoint's service type.
service_endpoint: Option<String>
The service endpoint value.
server_trust: Option<String>
The Root CA of the server trust certificate.
Implementations§
source§impl GetServiceEndpointOutput
impl GetServiceEndpointOutput
sourcepub fn service_type(&self) -> Option<&WirelessGatewayServiceType>
pub fn service_type(&self) -> Option<&WirelessGatewayServiceType>
The endpoint's service type.
sourcepub fn service_endpoint(&self) -> Option<&str>
pub fn service_endpoint(&self) -> Option<&str>
The service endpoint value.
sourcepub fn server_trust(&self) -> Option<&str>
pub fn server_trust(&self) -> Option<&str>
The Root CA of the server trust certificate.
source§impl GetServiceEndpointOutput
impl GetServiceEndpointOutput
sourcepub fn builder() -> GetServiceEndpointOutputBuilder
pub fn builder() -> GetServiceEndpointOutputBuilder
Creates a new builder-style object to manufacture GetServiceEndpointOutput
.
Trait Implementations§
source§impl Clone for GetServiceEndpointOutput
impl Clone for GetServiceEndpointOutput
source§fn clone(&self) -> GetServiceEndpointOutput
fn clone(&self) -> GetServiceEndpointOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for GetServiceEndpointOutput
impl Debug for GetServiceEndpointOutput
source§impl PartialEq for GetServiceEndpointOutput
impl PartialEq for GetServiceEndpointOutput
source§fn eq(&self, other: &GetServiceEndpointOutput) -> bool
fn eq(&self, other: &GetServiceEndpointOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetServiceEndpointOutput
impl RequestId for GetServiceEndpointOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetServiceEndpointOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetServiceEndpointOutput
impl Send for GetServiceEndpointOutput
impl Sync for GetServiceEndpointOutput
impl Unpin for GetServiceEndpointOutput
impl UnwindSafe for GetServiceEndpointOutput
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
Mutably borrows from an owned value. Read more