You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some things like BatchFuture, RouteFuture and much of the Router interface are public to allow testing and implementing custom transports. These should be hidden behind some sort of feature, as rust-analyzer will currently suggest importing them, which is very rarely what users actually want
#[cfg_attr(not(feature = "hazmat"), doc(hidden))]
pub mod hazmat {
pub use ....;
}
The text was updated successfully, but these errors were encountered:
Some things like
BatchFuture
,RouteFuture
and much of theRouter
interface are public to allow testing and implementing custom transports. These should be hidden behind some sort of feature, as rust-analyzer will currently suggest importing them, which is very rarely what users actually wantThe text was updated successfully, but these errors were encountered: