mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-23 21:51:06 +01:00
do not export cell
This commit is contained in:
parent
5937a06ebe
commit
36a15efeac
@ -7,8 +7,7 @@ use std::cell::{Ref, RefCell, RefMut};
|
||||
use std::fmt;
|
||||
use std::rc::Rc;
|
||||
|
||||
#[doc(hidden)]
|
||||
pub struct Cell<T> {
|
||||
pub(crate) struct Cell<T> {
|
||||
#[cfg(feature = "cell")]
|
||||
inner: Rc<UnsafeCell<T>>,
|
||||
#[cfg(not(feature = "cell"))]
|
||||
|
@ -55,8 +55,7 @@ extern crate webpki;
|
||||
#[cfg(feature = "rust-tls")]
|
||||
extern crate webpki_roots;
|
||||
|
||||
#[doc(hidden)]
|
||||
pub mod cell;
|
||||
mod cell;
|
||||
pub mod cloneable;
|
||||
pub mod codec;
|
||||
pub mod connector;
|
||||
|
Loading…
Reference in New Issue
Block a user