Skip to main content

http_type/
lib.rs

1//! http-type
2//!
3//! A comprehensive Rust type library for HTTP operations and concurrent programming.
4
5mod any;
6mod arc_mutex;
7mod arc_rwlock;
8mod attribute;
9mod box_leak;
10mod box_rwlock;
11mod content_type;
12mod cookie;
13mod file_extension;
14mod hash_map_xx_hash3_64;
15mod hash_set_xx_hash3_64;
16mod http_status;
17mod http_url;
18mod http_version;
19mod lifetime;
20mod methods;
21mod panic;
22mod protocol;
23mod rc_rwlock;
24mod request;
25mod response;
26mod status;
27mod stream;
28mod task;
29mod upgrade_type;
30mod websocket_frame;
31
32pub use {
33    any::*, arc_mutex::*, arc_rwlock::*, attribute::*, box_leak::*, box_rwlock::*, content_type::*,
34    cookie::*, file_extension::*, hash_map_xx_hash3_64::*, hash_set_xx_hash3_64::*, http_status::*,
35    http_url::*, http_version::*, lifetime::*, methods::*, panic::*, protocol::*, rc_rwlock::*,
36    request::*, response::*, status::*, stream::*, task::*, upgrade_type::*, websocket_frame::*,
37};
38
39pub use {http_compress::*, http_constant::*, serde_json, tokio};
40
41use std::{
42    any::Any,
43    collections::{HashMap, HashSet, VecDeque},
44    fmt::{self, Debug, Display, Formatter},
45    hash::Hash,
46    io::ErrorKind,
47    net::IpAddr,
48    num::ParseIntError,
49    pin::Pin,
50    rc::Rc,
51    result::Result,
52    str::{FromStr, SplitWhitespace},
53    sync::{
54        Arc,
55        atomic::{self, AtomicBool, AtomicUsize},
56    },
57    time::Duration,
58};
59
60use {
61    core::hash::BuildHasherDefault,
62    lombok_macros::*,
63    serde::{Deserialize, Serialize, de::DeserializeOwned},
64    tokio::{
65        io::{AsyncBufReadExt, AsyncReadExt, AsyncWriteExt, BufReader},
66        net::TcpStream,
67        runtime::Handle,
68        sync::{
69            Mutex, Notify, RwLock, RwLockReadGuard, RwLockWriteGuard,
70            mpsc::{UnboundedReceiver, UnboundedSender, unbounded_channel},
71        },
72        task::{JoinError, LocalSet, spawn_blocking, spawn_local},
73        time::{error::Elapsed, timeout},
74    },
75    url::{ParseError, Url},
76};