pub trait AsHandle {
// Required method
fn as_handle(&self) -> BorrowedHandle<'_>;
}
Available on Windows only.
Expand description
A trait to borrow the handle from an underlying object.
Required Methods§
sourcefn as_handle(&self) -> BorrowedHandle<'_>
fn as_handle(&self) -> BorrowedHandle<'_>
Implementors§
impl AsHandle for File
impl AsHandle for Stderr
impl AsHandle for Stdin
impl AsHandle for Stdout
impl AsHandle for Child
impl AsHandle for ChildStderr
impl AsHandle for ChildStdin
impl AsHandle for ChildStdout
impl AsHandle for BorrowedHandle<'_>
impl AsHandle for OwnedHandle
impl<'a> AsHandle for StderrLock<'a>
impl<'a> AsHandle for StdinLock<'a>
impl<'a> AsHandle for StdoutLock<'a>
impl<T> AsHandle for JoinHandle<T>
impl<T: AsHandle> AsHandle for &T
impl<T: AsHandle> AsHandle for &mut T
impl<T: AsHandle> AsHandle for Box<T>
impl<T: AsHandle> AsHandle for Rc<T>
impl<T: AsHandle> AsHandle for Arc<T>
This impl allows implementing traits that require AsHandle
on Arc.
use std::fs::File;
use std::sync::Arc;
trait MyTrait: AsHandle {}
impl MyTrait for Arc<File> {}
impl MyTrait for Box<File> {}
Run