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<EigrpProcess, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EigrpProcess, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for EigrpProcess
impl Serialize for EigrpProcess
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. 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