pub struct DescribeClientVpnRoutesResult {
pub next_token: Option<String>,
pub routes: Option<Vec<ClientVpnRoute>>,
}Fields§
§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.
routes: Option<Vec<ClientVpnRoute>>Information about the Client VPN endpoint routes.
Trait Implementations§
Source§impl Clone for DescribeClientVpnRoutesResult
impl Clone for DescribeClientVpnRoutesResult
Source§fn clone(&self) -> DescribeClientVpnRoutesResult
fn clone(&self) -> DescribeClientVpnRoutesResult
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 DescribeClientVpnRoutesResult
impl Default for DescribeClientVpnRoutesResult
Source§fn default() -> DescribeClientVpnRoutesResult
fn default() -> DescribeClientVpnRoutesResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeClientVpnRoutesResult
impl PartialEq for DescribeClientVpnRoutesResult
Source§fn eq(&self, other: &DescribeClientVpnRoutesResult) -> bool
fn eq(&self, other: &DescribeClientVpnRoutesResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeClientVpnRoutesResult
Auto Trait Implementations§
impl Freeze for DescribeClientVpnRoutesResult
impl RefUnwindSafe for DescribeClientVpnRoutesResult
impl Send for DescribeClientVpnRoutesResult
impl Sync for DescribeClientVpnRoutesResult
impl Unpin for DescribeClientVpnRoutesResult
impl UnwindSafe for DescribeClientVpnRoutesResult
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