use super::Info;
#[cfg(feature = "std")]
mod std;
mod core;
pub struct WrapperCtx<'a, T, I: Info<'a, T>>(I::Context);
impl<'a, T, I: Info<'a, T>> Default for WrapperCtx<'a, T, I> {
#[inline]
fn default() -> Self {
WrapperCtx(I::Context::default())
}
}