pub struct DescribeClientVpnEndpointsResult {
pub client_vpn_endpoints: Option<Vec<ClientVpnEndpoint>>,
pub next_token: Option<String>,
}Fields§
§client_vpn_endpoints: Option<Vec<ClientVpnEndpoint>>Information about the Client VPN endpoints.
next_token: Option<String>The token to use to retrieve the next page of results. This value is null when there are no more results to return.
Trait Implementations§
Source§impl Clone for DescribeClientVpnEndpointsResult
impl Clone for DescribeClientVpnEndpointsResult
Source§fn clone(&self) -> DescribeClientVpnEndpointsResult
fn clone(&self) -> DescribeClientVpnEndpointsResult
Returns a duplicate 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 Default for DescribeClientVpnEndpointsResult
impl Default for DescribeClientVpnEndpointsResult
Source§fn default() -> DescribeClientVpnEndpointsResult
fn default() -> DescribeClientVpnEndpointsResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeClientVpnEndpointsResult
impl PartialEq for DescribeClientVpnEndpointsResult
Source§fn eq(&self, other: &DescribeClientVpnEndpointsResult) -> bool
fn eq(&self, other: &DescribeClientVpnEndpointsResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeClientVpnEndpointsResult
Auto Trait Implementations§
impl Freeze for DescribeClientVpnEndpointsResult
impl RefUnwindSafe for DescribeClientVpnEndpointsResult
impl Send for DescribeClientVpnEndpointsResult
impl Sync for DescribeClientVpnEndpointsResult
impl Unpin for DescribeClientVpnEndpointsResult
impl UnwindSafe for DescribeClientVpnEndpointsResult
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