pub struct ChanOut<'g>(/* private fields */);
Expand description
An output-only SSH channel, such as stderr for a server
Implementations§
Trait Implementations§
Source§impl Write for ChanOut<'_>
impl Write for ChanOut<'_>
Source§async fn write(&mut self, buf: &[u8]) -> Result<usize, Error>
async fn write(&mut self, buf: &[u8]) -> Result<usize, Error>
Write a buffer into this writer, returning how many bytes were written. Read more
Auto Trait Implementations§
impl<'g> Freeze for ChanOut<'g>
impl<'g> !RefUnwindSafe for ChanOut<'g>
impl<'g> !Send for ChanOut<'g>
impl<'g> !Sync for ChanOut<'g>
impl<'g> Unpin for ChanOut<'g>
impl<'g> !UnwindSafe for ChanOut<'g>
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