pub struct IpcOneShotServer<T> {
    os_server: OsIpcOneShotServer,
    phantom: PhantomData<T>,
}
Expand description

A server associated with a given name.

Examples

Basic Usage

use ipc_channel::ipc::{self, IpcOneShotServer, IpcSender, IpcReceiver};

let (server, server_name) = IpcOneShotServer::new().unwrap();
let tx: IpcSender<Vec<u8>> = IpcSender::connect(server_name).unwrap();

tx.send(vec![0x10, 0x11, 0x12, 0x13]).unwrap();
let (_, data): (_, Vec<u8>) = server.accept().unwrap();
assert_eq!(data, vec![0x10, 0x11, 0x12, 0x13]);

Sending an IpcSender

use ipc_channel::ipc::{self, IpcOneShotServer, IpcSender, IpcReceiver};
let (server, name) = IpcOneShotServer::new().unwrap();

let (tx1, rx1): (IpcSender<Vec<u8>>, IpcReceiver<Vec<u8>>) = ipc::channel().unwrap();
let tx0 = IpcSender::connect(name).unwrap();
tx0.send(tx1).unwrap();

let (_, tx1): (_, IpcSender<Vec<u8>>) = server.accept().unwrap();
tx1.send(vec![0x48, 0x65, 0x6b, 0x6b, 0x6f, 0x00]).unwrap();

let data = rx1.recv().unwrap();
assert_eq!(data, vec![0x48, 0x65, 0x6b, 0x6b, 0x6f, 0x00]);

Fields§

§os_server: OsIpcOneShotServer§phantom: PhantomData<T>

Implementations§

source§

impl<T> IpcOneShotServer<T>where T: for<'de> Deserialize<'de> + Serialize,

source

pub fn new() -> Result<(IpcOneShotServer<T>, String), Error>

source

pub fn accept(self) -> Result<(IpcReceiver<T>, T), Error>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for IpcOneShotServer<T>where T: RefUnwindSafe,

§

impl<T> Send for IpcOneShotServer<T>where T: Send,

§

impl<T> Sync for IpcOneShotServer<T>where T: Sync,

§

impl<T> Unpin for IpcOneShotServer<T>where T: Unpin,

§

impl<T> UnwindSafe for IpcOneShotServer<T>where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

source§

fn vzip(self) -> V