Skip to main content

Crate netform_dialect_iosxe

Crate netform_dialect_iosxe 

Source
Expand description

IOS XE-oriented dialect profile for netform_ir.

This crate re-exports IosLikeDialect parameterised to "iosxe" and provides the parse_iosxe convenience function.

§Example

use netform_dialect_iosxe::parse_iosxe;

let cfg = "interface Ethernet1\n  description \"WAN uplink\"\n";
let doc = parse_iosxe(cfg);
assert_eq!(doc.render(), cfg);

Constants§

IOSXE_DIALECT
Pre-built IOS XE dialect instance.

Functions§

parse_iosxe
Parse text using the IOS XE dialect.

Type Aliases§

IosxeDialect
Backward-compatible type alias for the IOS XE dialect.