pub struct ChanOut<'a>(/* private fields */);Expand description
An output-only SSH channel, such as stderr for a server
Implementations§
Trait Implementations§
Source§impl<'a> Write for ChanOut<'a>
impl<'a> Write for ChanOut<'a>
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<'a> Freeze for ChanOut<'a>
impl<'a> !RefUnwindSafe for ChanOut<'a>
impl<'a> !Send for ChanOut<'a>
impl<'a> !Sync for ChanOut<'a>
impl<'a> Unpin for ChanOut<'a>
impl<'a> !UnwindSafe for ChanOut<'a>
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