[][src]Struct polyio::Client

pub struct Client { /* fields omitted */ }

A Client is the entity used by clients of this module for interacting with the Polygon API.

Implementations

impl Client[src]

pub fn new(api_info: ApiInfo) -> Self[src]

Create a new Client using the given API information.

pub fn from_env() -> Result<Self, Error>[src]

Create a new Client with information from the environment.

pub async fn issue<E, '_>(
    &'_ self,
    input: E::Input
) -> Result<E::Output, RequestError<E::Error>> where
    E: Endpoint
[src]

Create and issue a request and decode the response.

pub async fn subscribe<S, '_>(
    &'_ self,
    subscriptions: S
) -> Result<impl Stream<Item = Result<Result<Event, JsonError>, WebSocketError>>, Error> where
    S: IntoIterator<Item = Subscription>, 
[src]

Subscribe to the given stream in order to receive updates.

Trait Implementations

impl Debug for Client[src]

Auto Trait Implementations

impl !RefUnwindSafe for Client

impl Send for Client

impl Sync for Client

impl Unpin for Client

impl !UnwindSafe for Client

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