usecrate::{Future, Stream};/// The core trait of a [`Sipper`].
////// A [`Sipper`] is just _any_ type that is both a [`Future`] and a [`Stream`].
////// [`Sipper`]: crate::Sipper
pubtraitCore: Future + Stream {}impl<T> Core forTwhere T: Future + Stream {}