[][src]Struct web3_etz::transports::ipc::Ipc

pub struct Ipc { /* fields omitted */ }

Unix Domain Sockets (IPC) transport

Methods

impl Ipc[src]

pub fn new<P>(path: P) -> Result<(EventLoopHandle, Self)> where
    P: AsRef<Path>, 
[src]

Create new IPC transport with separate event loop. NOTE: Dropping event loop handle will stop the transport layer!

IPC is only available on Unix. On other systems, this always returns an error.

pub fn with_event_loop<P>(path: P, handle: &Handle) -> Result<Self> where
    P: AsRef<Path>, 
[src]

Create new IPC transport within existing Event Loop.

IPC is only available on Unix. On other systems, this always returns an error.

Trait Implementations

impl Transport for Ipc[src]

type Out = IpcTask<fn(_: Vec<Result<Value>>) -> Result<Value>>

The type of future this transport returns when a call is made.

fn execute(&self, method: &str, params: Vec<Value>) -> Self::Out[src]

Execute remote method with given parameters.

impl BatchTransport for Ipc[src]

type Batch = IpcTask<fn(_: Vec<Result<Value>>) -> Result<Vec<Result<Value>>>>

The type of future this transport returns when a call is made.

impl DuplexTransport for Ipc[src]

type NotificationStream = Box<dyn Stream<Item = Value, Error = Error> + Send + 'static>

The type of stream this transport returns

impl Clone for Ipc[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Ipc[src]

Auto Trait Implementations

impl Unpin for Ipc

impl Sync for Ipc

impl Send for Ipc

impl !UnwindSafe for Ipc

impl !RefUnwindSafe for Ipc

Blanket Implementations

impl<X, T> Transport for X where
    T: Transport + ?Sized,
    X: Deref<Target = T> + Debug + Clone
[src]

type Out = <T as Transport>::Out

The type of future this transport returns when a call is made.

fn execute(&self, method: &str, params: Vec<Value>) -> Self::Out[src]

Execute remote method with given parameters.

impl<X, T> BatchTransport for X where
    T: BatchTransport + ?Sized,
    X: Deref<Target = T> + Debug + Clone
[src]

type Batch = <T as BatchTransport>::Batch

The type of future this transport returns when a call is made.

impl<X, T> DuplexTransport for X where
    T: DuplexTransport + ?Sized,
    X: Deref<Target = T> + Debug + Clone
[src]

type NotificationStream = <T as DuplexTransport>::NotificationStream

The type of stream this transport returns

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.