pub struct MultiStream {
pub streams: Vec<DualStream>,
}Expand description
A stream collection for multi-listener connections.
This struct is currently not actively used in the public API but is provided for potential future extensions where multiple streams might need to be handled together.
Fields§
§streams: Vec<DualStream>A collection of dual streams
Auto Trait Implementations§
impl Freeze for MultiStream
impl RefUnwindSafe for MultiStream
impl Send for MultiStream
impl Sync for MultiStream
impl Unpin for MultiStream
impl UnwindSafe for MultiStream
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more