#![allow(unused_imports)]
pub_in_crate! {
use ::core::{
convert::{
TryFrom,
TryInto,
},
hint,
mem::{self,
MaybeUninit,
},
ptr,
ops::{
Not,
},
slice,
};
#[cfg(feature = "std")]
use ::std::{
alloc,
io,
};
use crate::{
prelude::*,
};
#[cfg(feature = "std")]
use crate::{
extension_traits::{
VecExtendFromReader,
},
read::{
ReadIntoUninit,
},
};
}