use crateSealed;
use crate::;
/// Sealed trait to enable boxed generators. See [`.boxed()`](crate::GeneratorExt::boxed) for details.
///
/// This trait should normally not be used. Pretty much the only use-case for this is to be an object-safe
/// trait, thus allowing for dynamic trait objects and boxing.
///
/// This trait is blanked implemented for all generators.