[][src]Struct packet_ipc::Client

pub struct Client { /* fields omitted */ }

Implementations

impl Client[src]

pub fn new(server_name: String) -> Result<Client, Error>[src]

Uses a unbounded channel to transfer data.

pub fn new_with_size(
    server_name: String,
    channel_size: Option<usize>
) -> Result<Client, Error>
[src]

new client with a choice of bounded or unbounded based on the channel_size bening Some(size) or None

pub fn take(&mut self, size: usize) -> Vec<Arc<Packet>>[src]

pub fn recv(&mut self, size: usize) -> Result<Option<Vec<Arc<Packet>>>, Error>[src]

Trait Implementations

impl Debug for Client[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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<V, T> VZip<V> for T where
    V: MultiLane<T>,