pub struct Requester<T: RequestDriver> { /* private fields */ }
Expand description

A wrapper for managing requests and responses for a given driver.

Implementations§

source§

impl<T: RequestDriver> Requester<T>

source

pub fn driver(&self) -> &T

Get a reference to the driver.

source

pub fn is_shutdown(&self) -> bool

Check if the requester is shutdown.

source

pub fn new(driver: T) -> Self

Construct a new request manager for a given driver.

source

pub async fn submit( &self, reqs: &mut [SubmitRequest<T::Request>] ) -> Result<InFlightFuture<T::Response>, SubmitError<T::SubmitError>>

Submit a set of requests, for which we are not interested in the specific responses from the device. Returns a future that awaits on an InFlightFuture, so awaiting on this function ensures that all requests are submitted, not necessarily handled.

source

pub async fn submit_for_response( &self, reqs: &mut [SubmitRequest<T::Request>] ) -> Result<InFlightFutureWithResponses<T::Response>, SubmitError<T::SubmitError>>

Submit a set of requests, for which we are interested in the specific responses from the device. Returns a future that awaits on an InFlightFutureWithResponses, so awaiting on this function ensures that all requests are submitted, not necessarily handled.

source

pub fn shutdown(&self)

Shutdown the request manager.

source

pub fn finish(&self, resps: &[ResponseInfo<T::Response>])

Send back, from the driver, to the request manager, a set of responses to a previously submitted set of requests. The responses need not be contiguous in ID, nor do they need all be from the same set of requests.

Auto Trait Implementations§

§

impl<T> !DeviceSync for Requester<T>

§

impl<T> !ObjSafe for Requester<T>

§

impl<T> RefUnwindSafe for Requester<T>where T: RefUnwindSafe,

§

impl<T> Send for Requester<T>where T: Send,

§

impl<T> Sync for Requester<T>where T: Sync,

§

impl<T> Unpin for Requester<T>where T: Unpin,

§

impl<T> UnwindSafe for Requester<T>where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.