// Copyright 2025 Umberto Gotti <umberto.gotti@umbertogotti.dev>
// Licensed under the Apache License, Version 2.0
// http://www.apache.org/licenses/LICENSE-2.0
use Stream;
/// A trait for types that can be converted into a `Stream`.
///
/// This allows stream operators to be more ergonomic by accepting
/// various stream-like types, such as channels or other wrappers,
/// and converting them into a stream internally.
/// Blanket implementation for any type that is already a `Stream`.
/// This allows functions that accept `IntoStream` to also accept any `Stream`
/// without needing explicit conversion.