pub struct AddPrefixListEntry {
pub cidr: String,
pub description: Option<String>,
}Expand description
An entry for a prefix list.
Fields§
§cidr: StringThe CIDR block.
description: Option<String>A description for the entry.
Constraints: Up to 255 characters in length.
Trait Implementations§
Source§impl Clone for AddPrefixListEntry
impl Clone for AddPrefixListEntry
Source§fn clone(&self) -> AddPrefixListEntry
fn clone(&self) -> AddPrefixListEntry
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 AddPrefixListEntry
impl Debug for AddPrefixListEntry
Source§impl Default for AddPrefixListEntry
impl Default for AddPrefixListEntry
Source§fn default() -> AddPrefixListEntry
fn default() -> AddPrefixListEntry
Returns the “default value” for a type. Read more
Source§impl PartialEq for AddPrefixListEntry
impl PartialEq for AddPrefixListEntry
impl StructuralPartialEq for AddPrefixListEntry
Auto Trait Implementations§
impl Freeze for AddPrefixListEntry
impl RefUnwindSafe for AddPrefixListEntry
impl Send for AddPrefixListEntry
impl Sync for AddPrefixListEntry
impl Unpin for AddPrefixListEntry
impl UnwindSafe for AddPrefixListEntry
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