Struct ethane::connector::Connector[][src]

pub struct Connector<T> { /* fields omitted */ }

Used to to interact with ethereum nodes

This is basically a connection wrapper for sending requests or starting subscriptions.

Implementations

impl Connector<Http>[src]

pub fn http(
    domain: &str,
    credentials: Option<Credentials>
) -> Result<Self, ConnectorError>
[src]

Create a connector with a http connection. Does not allow to subscribe to node events.

impl Connector<WebSocket>[src]

pub fn websocket(
    domain: &str,
    credentials: Option<Credentials>
) -> Result<Self, ConnectorError>
[src]

Create a connector with a websocket connection.

impl Connector<Uds>[src]

pub fn unix_domain_socket(path: &str) -> Result<Self, ConnectorError>[src]

Create a connector using a unix domain socket.

impl<T: Subscribe + Request> Connector<T>[src]

pub fn subscribe<U: DeserializeOwned + Debug>(
    &mut self,
    sub_request: SubscriptionRequest<U>
) -> Result<Subscription<U, T>, ConnectorError>
[src]

Starts a new subscription. Use one of these rpc generating functions to provide the subscription request. Returns a subscription which you can poll for new items.

impl<T: Request> Connector<T>[src]

pub fn call<U: DeserializeOwned + Debug>(
    &mut self,
    rpc: Rpc<U>
) -> Result<U, ConnectorError>
[src]

Sends a request to an ethereum node. Use a function in one of these functions to generate the request. Does not support the subscription namespace.

Auto Trait Implementations

impl<T> RefUnwindSafe for Connector<T> where
    T: RefUnwindSafe

impl<T> Send for Connector<T> where
    T: Send

impl<T> Sync for Connector<T> where
    T: Sync

impl<T> Unpin for Connector<T> where
    T: Unpin

impl<T> UnwindSafe for Connector<T> where
    T: UnwindSafe

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> Same<T> for T

type Output = T

Should always be Self

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>,