pub struct MultiSink { /* private fields */ }Expand description
Fan-out sink — forwards every entry to a list of inner sinks.
Sinks are called sequentially in registration order; a panic in one sink (theoretically impossible, but defensive) doesn’t suppress the others.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for MultiSink
impl !UnwindSafe for MultiSink
impl Freeze for MultiSink
impl Send for MultiSink
impl Sync for MultiSink
impl Unpin for MultiSink
impl UnsafeUnpin for MultiSink
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