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

Portability abstraction over IntoFd and IntoHandleOrSocket.

Required methods

Consume self and convert into an OwnedGrip.

Implementors