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