Trait IntoIpc

Source
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.

Required Associated Types§

Required Methods§

Source

fn into_ipc(self) -> Self::IpcType

Implementors§