pub struct PrefixList {
pub cidrs: Option<Vec<String>>,
pub prefix_list_id: Option<String>,
pub prefix_list_name: Option<String>,
}Expand description
Describes prefixes for AWS services.
Fields§
§cidrs: Option<Vec<String>>The IP address range of the AWS service.
prefix_list_id: Option<String>The ID of the prefix.
prefix_list_name: Option<String>The name of the prefix.
Trait Implementations§
Source§impl Clone for PrefixList
impl Clone for PrefixList
Source§fn clone(&self) -> PrefixList
fn clone(&self) -> PrefixList
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 Debug for PrefixList
impl Debug for PrefixList
Source§impl Default for PrefixList
impl Default for PrefixList
Source§fn default() -> PrefixList
fn default() -> PrefixList
Returns the “default value” for a type. Read more
Source§impl PartialEq for PrefixList
impl PartialEq for PrefixList
impl StructuralPartialEq for PrefixList
Auto Trait Implementations§
impl Freeze for PrefixList
impl RefUnwindSafe for PrefixList
impl Send for PrefixList
impl Sync for PrefixList
impl Unpin for PrefixList
impl UnwindSafe for PrefixList
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