mxp 1.2.1

Rust implementation of the MXP (Mud eXtension Protocol) standard
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Typed representations of parsed MXP strings.

mod builder;
pub use builder::TagBuilder;

mod definition;
pub use definition::{
    AttributeListDefinition, Definition, ElementDefinition, EntityDefinition, LineTagDefinition,
};

mod error;
pub use error::TryFromNodeError;

mod tag;
pub use tag::{Tag, TagClose, TagOpen};