mxp 1.2.0

Rust implementation of the MXP (Mud eXtension Protocol) standard
Documentation
//! Atomic elements defined by the MXP standard.

#[macro_use]
mod macros;

mod color;

pub use color::Color;

mod dest;
pub use dest::Dest;

mod expire;
pub use expire::Expire;

mod filter;
pub use filter::Filter;

mod font;
pub use font::{Font, FontStyle};

mod heading;
pub use heading::Heading;

mod frame;
pub use frame::{Frame, FrameAction, FrameAlign, FrameLayout};

mod gauge;
pub use gauge::Gauge;

mod hyperlink;
pub use hyperlink::Hyperlink;

mod image;
pub use image::Image;

mod music;
pub use music::Music;

mod relocate;
pub use relocate::Relocate;

mod send;
pub use send::{Send, SendMenu, SendMenuItem};

mod sound;
pub use sound::{AudioRepetition, Sound};

mod stat;
pub use stat::Stat;

mod style_version;
pub use style_version::StyleVersion;

mod support;
pub use support::Support;

mod var;
pub use var::Var;