http-type 4.31.0

A library providing essential types for HTTP, including request bodies, response headers, and other core HTTP abstractions.
Documentation
1
2
3
4
5
6
7
8
use crate::*;

pub trait AnySend: Any + Send {}
pub trait AnySendClone: Any + Send + Clone {}
pub trait AnySync: Any + Sync {}
pub trait AnySyncClone: Any + Sync + Clone {}
pub trait AnySendSync: Any + Send + Sync {}
pub trait AnySendSyncClone: Any + Send + Sync + Clone {}