pub struct EigrpProcess {
pub asn: u32,
pub networks: Vec<OspfNetwork>,
pub passive_interfaces: Vec<String>,
pub redistribute: Vec<OspfRedistribute>,
}Expand description
A router eigrp <asn> block.
Fields§
§asn: u32§networks: Vec<OspfNetwork>§passive_interfaces: Vec<String>§redistribute: Vec<OspfRedistribute>Trait Implementations§
Source§impl Clone for EigrpProcess
impl Clone for EigrpProcess
Source§fn clone(&self) -> EigrpProcess
fn clone(&self) -> EigrpProcess
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EigrpProcess
impl Debug for EigrpProcess
Source§impl<'de> Deserialize<'de> for EigrpProcess
impl<'de> Deserialize<'de> for EigrpProcess
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EigrpProcess
impl RefUnwindSafe for EigrpProcess
impl Send for EigrpProcess
impl Sync for EigrpProcess
impl Unpin for EigrpProcess
impl UnsafeUnpin for EigrpProcess
impl UnwindSafe for EigrpProcess
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