[][src]Module romp::prelude

A "prelude" for users of the romp crate.

This prelude is similar to the standard library's prelude in that you'll almost always want to import its entire contents, but unlike the standard library's prelude you'll have to do so manually:

use romp::prelude::*;

Re-exports

pub use crate::workflow::router::insert_stomp_filter as romp_stomp_filter;
pub use crate::workflow::router::insert_stomp as romp_stomp;
pub use crate::workflow::http_router::insert_http_filter as romp_http_filter;
pub use crate::workflow::http_router::insert_http as romp_http;
pub use crate::workflow::context::Context;
pub use crate::message::stomp_message::StompCommand;
pub use crate::message::stomp_message::StompMessage;
pub use crate::session::stomp_session::StompSession;
pub use crate::workflow::CONTINUE;
pub use crate::workflow::HANDLED;
pub use crate::workflow::filter::MessageFilter;
pub use crate::workflow::filter::FilterError;
pub use crate::workflow::filter::HttpFilter;
pub use crate::workflow::filter::HttpError;
pub use crate::bootstrap::romp_bootstrap;