[][src]Struct ipmpsc::Receiver

pub struct Receiver { /* fields omitted */ }

Represents the receiving end of an inter-process channel, capable of receiving any message type implementing serde::Deserialize.

Methods

impl Receiver[src]

pub fn new(buffer: SharedRingBuffer) -> Self[src]

Constructs a Receiver from the specified SharedRingBuffer

pub fn try_recv<T>(&self) -> Result<Option<T>, Error> where
    T: for<'de> Deserialize<'de>, 
[src]

Attempt to read a message without blocking.

This will return Ok(None) if there are no messages immediately available.

pub fn recv<T>(&self) -> Result<T, Error> where
    T: for<'de> Deserialize<'de>, 
[src]

Attempt to read a message, blocking if necessary until one becomes available.

pub fn recv_timeout<T>(&self, timeout: Duration) -> Result<Option<T>, Error> where
    T: for<'de> Deserialize<'de>, 
[src]

Attempt to read a message, blocking for up to the specified duration if necessary until one becomes available.

pub fn zero_copy_context(&mut self) -> ZeroCopyContext[src]

Borrows this receiver for deserializing a message with references that refer directly to this Receiver's ring buffer rather than copying out of it.

Because those references refer directly to the ring buffer, the read pointer cannot be advanced until the lifetime of those references ends.

To ensure the above, the following rules apply:

  1. The underlying Receiver cannot be used while a ZeroCopyContext borrows it (enforced at compile time).

  2. References in a message deserialized using a given ZeroCopyContext cannot outlive that instance (enforced at compile time).

  3. A given ZeroCopyContext can only be used to deserialize a single message before it must be discarded since the read pointer is advanced only when the instance is dropped (enforced at run time).

Auto Trait Implementations

impl Sync for Receiver

impl Send for Receiver

impl Unpin for Receiver

impl !RefUnwindSafe for Receiver

impl !UnwindSafe for Receiver

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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