rustbasic-core 0.1.26

Core framework logic for RustBasic - A modern web framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod log;
pub mod str;
pub mod validator;
#[cfg(feature = "http-client")]
pub mod http_client;
#[cfg(feature = "websocket")]
pub mod broadcaster;
pub mod casts;

pub use log::Log;
pub use str::Str;
pub use validator::Validator;
#[cfg(feature = "http-client")]
pub use http_client::{Http, PendingRequest, Response as HttpResponse};
#[cfg(feature = "websocket")]
pub use broadcaster::{Broadcaster, BroadcasterState, ClientSession};