Struct async_pipes::PipeWriter
source · pub struct PipeWriter<T> { /* private fields */ }
Expand description
Defines an end to a pipe that allows data to be sent through.
Provide this to crate::Pipeline::register_branching as an output for a stage.
Trait Implementations§
source§impl<T> Clone for PipeWriter<T>
impl<T> Clone for PipeWriter<T>
Manually implement Clone for PipeWriter over T
, as deriving Clone
Does not implement it over generic parameters.
Auto Trait Implementations§
impl<T> !RefUnwindSafe for PipeWriter<T>
impl<T> Send for PipeWriter<T>where
T: Send,
impl<T> Sync for PipeWriter<T>where
T: Send,
impl<T> Unpin for PipeWriter<T>
impl<T> !UnwindSafe for PipeWriter<T>
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