Lines Matching refs:Into
260 /// This is a portability abstraction over Unix-like [`Into<OwnedFd>`] and Windows'
261 /// `Into<OwnedHandle>`.
263 pub trait IntoFilelike: Into<OwnedFd> {
281 impl<T: Into<OwnedFd>> IntoFilelike for T {
291 /// This is a portability abstraction over Unix-like `Into<OwnedFd>` and Windows'
292 /// [`Into<OwnedHandle>`].
294 pub trait IntoFilelike: Into<OwnedHandle> {
300 impl<T: Into<OwnedHandle>> IntoFilelike for T {
310 /// This is a portability abstraction over Unix-like [`Into<OwnedFd>`] and Windows'
311 /// `Into<OwnedSocket>`.
313 pub trait IntoSocketlike: Into<OwnedFd> {
319 impl<T: Into<OwnedFd>> IntoSocketlike for T {
329 /// This is a portability abstraction over Unix-like `Into<OwnedFd>` and Windows'
330 /// [`Into<OwnedSocket>`].
332 pub trait IntoSocketlike: Into<OwnedSocket> {
350 impl<T: Into<OwnedSocket>> IntoSocketlike for T {