pub trait SingleTypeStorage {
type Item;
}Expand description
Internal trait not intended for public usage
Required Associated Types§
Implementations on Foreign Types§
Source§impl<T> SingleTypeStorage for Option<T>where
T: SingleTypeStorage,
impl<T> SingleTypeStorage for Option<T>where
T: SingleTypeStorage,
type Item = <T as SingleTypeStorage>::Item
Source§impl<T> SingleTypeStorage for &Twhere
T: SingleTypeStorage,
impl<T> SingleTypeStorage for &Twhere
T: SingleTypeStorage,
type Item = <T as SingleTypeStorage>::Item
Source§impl<T> SingleTypeStorage for &mut Twhere
T: SingleTypeStorage,
impl<T> SingleTypeStorage for &mut Twhere
T: SingleTypeStorage,
type Item = <T as SingleTypeStorage>::Item
Source§impl<T> SingleTypeStorage for Mutex<T>
Available on crate feature tokio only.
impl<T> SingleTypeStorage for Mutex<T>
Available on crate feature
tokio only.Implementors§
Source§impl<HB, SW> SingleTypeStorage for ServerStream<HB, SW>
Available on crate feature http2 only.
impl<HB, SW> SingleTypeStorage for ServerStream<HB, SW>
Available on crate feature
http2 only.Source§impl<HB, SW, const IS_CLIENT: bool> SingleTypeStorage for Http2<HB, SW, IS_CLIENT>
Available on crate feature http2 only.
impl<HB, SW, const IS_CLIENT: bool> SingleTypeStorage for Http2<HB, SW, IS_CLIENT>
Available on crate feature
http2 only.