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