pub trait IntoGrip: Into<OwnedFd> {
// Required method
fn into_grip(self) -> OwnedGrip;
}
Expand description
Portability abstraction over Into<OwnedFd>
and
Into<OwnedHandleOrSocket>
.
Required Methods§
Object Safety§
This trait is not object safe.