pub trait IntoGrip: IntoFd {
    fn into_grip(self) -> OwnedGrip;
}
Expand description

Portability abstraction over IntoFd and IntoHandleOrSocket.

Required methods

Consume self and convert into an OwnedGrip.

Implementors