pub trait IntoIpc {
type IpcType;
// Required method
fn into_ipc(self) -> Self::IpcType;
}Expand description
Objects that have IntoIpc may be turned into an object that can be passed
across an IPC barrier. This consumes the object and returns a new object that
may be dereferenced to the original object.