[][src]Struct remote_hal::remote::Client

pub struct Client { /* fields omitted */ }

Remote client for connecting to remote-hal server peripherals

THIS MUST BE RUN IN A MULTI-THREADED TOKIO CONTEXT

Methods

impl Client[src]

pub fn new(addr: SocketAddr) -> impl Future<Item = Self, Error = Error>[src]

Create a new remote-hal instance

pub fn close(self)[src]

pub fn request(
    &mut self,
    device: &str,
    request: RequestKind
) -> impl Future<Item = ResponseKind, Error = Error>
[src]

Pass-through for raw requests

impl Client[src]

pub fn init_all(
    &mut self,
    requests: &[InitRequest]
) -> impl Future<Item = Vec<InitResponse>, Error = Error>
[src]

Trait Implementations

impl Manager for Client[src]

type Spi = Spi

type Pin = Pin

type I2c = I2c

fn spi(
    &mut self,
    path: &str,
    baud: u32,
    mode: SpiMode
) -> Box<dyn Future<Item = Spi, Error = Error> + Send>
[src]

Connect to a new Spi instance

fn pin(
    &mut self,
    path: &str,
    mode: PinMode
) -> Box<dyn Future<Item = Pin, Error = Error> + Send>
[src]

Connect to a new Pin instance

fn i2c(
    &mut self,
    path: &str
) -> Box<dyn Future<Item = I2c, Error = Error> + Send>
[src]

Connect to a new I2c instance

impl Sync for Client[src]

impl Send for Client[src]

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

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

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