interprocess 2.4.0

Interprocess communication toolkit
Documentation
//! Derive macros that implement raw handle manipulation in terms of safe handle manipulation from
//! Rust 1.63+. Lifetime arguments on impls can be specified in curly braces.

macro_rules! derive_asraw {
    (@impl
        $({$($forcl:tt)*})?
        $ty:ty,
        $hty:ident, $trt:ident, $mtd:ident,
        $strt:ident, $smtd:ident, $cfg:ident) => {
        #[cfg($cfg)]
        impl $(<$($forcl)*>)? ::std::os::$cfg::io::$trt for $ty {
            #[inline]
            fn $mtd(&self) -> ::std::os::$cfg::io::$hty {
                let h = ::std::os::$cfg::io::$strt::$smtd(self);
                ::std::os::$cfg::io::$trt::$mtd(&h)
            }
        }
    };
    ($({$($forcl:tt)*})? $ty:ty, windows) => {
        derive_asraw!(
            @impl
            $({$($forcl)*})? $ty,
            RawHandle, AsRawHandle, as_raw_handle,
            AsHandle, as_handle, windows);
    };
    ($({$($forcl:tt)*})? $ty:ty, unix) => {
        derive_asraw!(
            @impl
            $({$($forcl)*})? $ty,
            RawFd, AsRawFd, as_raw_fd,
            AsFd, as_fd, unix);
    };
    ($({$($forcl:tt)*})? $ty:ty) => {
        derive_asraw!($({$($forcl)*})? $ty, windows);
        derive_asraw!($({$($forcl)*})? $ty, unix);
    };
}

macro_rules! derive_intoraw {
    (@impl
        $({$($forcl:tt)*})?
        $ty:ty,
        $hty:ident, $ohty:ident,
        $trt:ident, $mtd:ident, $cfg:ident) => {
        #[cfg($cfg)]
        impl $(<$($forcl)*>)? ::std::os::$cfg::io::$trt for $ty {
            #[inline]
            fn $mtd(self) -> ::std::os::$cfg::io::$hty {
                let h = <std::os::$cfg::io::$ohty as ::std::convert::From<_>>::from(self);
                ::std::os::$cfg::io::$trt::$mtd(h)
            }
        }
    };
    ($({$($forcl:tt)*})? $ty:ty, windows) => {
        derive_intoraw!(
            @impl
            $({$($forcl)*})? $ty,
            RawHandle, OwnedHandle,
            IntoRawHandle, into_raw_handle, windows);
    };
    ($({$($forcl:tt)*})? $ty:ty, unix) => {
        derive_intoraw!(
            @impl
            $({$($forcl)*})? $ty,
            RawFd, OwnedFd,
            IntoRawFd, into_raw_fd, unix);
    };
    ($({$($forcl:tt)*})? $ty:ty) => {
        derive_intoraw!($({$($forcl)*})? $ty, windows);
        derive_intoraw!($({$($forcl)*})? $ty, unix);
    };
}

macro_rules! derive_asintoraw {
    ($({$($forcl:tt)*})? $ty:ty, windows) => {
        derive_asraw!($({$($forcl)*})? $ty, windows);
        derive_intoraw!($({$($forcl)*})? $ty, windows);
    };
    ($({$($forcl:tt)*})? $ty:ty, unix) => {
        derive_asraw!($({$($forcl)*})? $ty, unix);
        derive_intoraw!($({$($forcl)*})? $ty, unix);
    };
    ($({$($forcl:tt)*})? $ty:ty) => {
        derive_asintoraw!($({$($forcl)*})? $ty, windows);
        derive_asintoraw!($({$($forcl)*})? $ty, unix);
    };
}

macro_rules! derive_fromraw {
    (@impl
        $({$($forcl:tt)*})?
        $ty:ty,
        $hty:ident, $ohty:ident,
        $trt:ident, $mtd:ident, $cfg:ident) => {
        #[cfg($cfg)]
        impl $(<$($forcl)*>)? ::std::os::$cfg::io::$trt for $ty {
            #[inline]
            unsafe fn $mtd(fd: ::std::os::$cfg::io::$hty) -> Self {
                let h: ::std::os::$cfg::io::$ohty = unsafe { ::std::os::$cfg::io::$trt::$mtd(fd) };
                ::std::convert::From::from(h)
            }
        }
    };
    ($({$($forcl:tt)*})? $ty:ty, windows) => {
        derive_fromraw!(
            @impl
            $({$($forcl)*})? $ty,
            RawHandle, OwnedHandle,
            FromRawHandle, from_raw_handle, windows);
    };
    ($({$($forcl:tt)*})? $ty:ty, unix) => {
        derive_fromraw!(
            @impl
            $({$($forcl)*})? $ty,
            RawFd, OwnedFd,
            FromRawFd, from_raw_fd, unix);
    };
    ($({$($forcl:tt)*})? $ty:ty) => {
        derive_fromraw!($({$($forcl)*})? $ty, windows);
        derive_fromraw!($({$($forcl)*})? $ty, unix);
    };
}

macro_rules! derive_raw {
    ($({$($forcl:tt)*})? $ty:ty, windows) => {
        derive_asintoraw!($({$($forcl)*})? $ty, windows);
        derive_fromraw!($({$($forcl)*})? $ty, windows);
    };
    ($({$($forcl:tt)*})? $ty:ty, unix) => {
        derive_asintoraw!($({$($forcl)*})? $ty, unix);
        derive_fromraw!($({$($forcl)*})? $ty, unix);
    };
    ($({$($forcl:tt)*})? $ty:ty) => {
        derive_asintoraw!($({$($forcl)*})? $ty);
        derive_fromraw!($({$($forcl)*})? $ty);
    };
}