pub struct RatingRequestsReadRequest<'a> {
pub id: i64,
/* private fields */
}
Expand description
Create this with the associated client method.
That method takes required values as arguments. Set optional values using builder methods on this struct.
Fields§
§id: i64
Implementations§
source§impl<'a> RatingRequestsReadRequest<'a>
impl<'a> RatingRequestsReadRequest<'a>
pub async fn send(self) -> InMemoryResult<RatingRequest>
Trait Implementations§
source§impl<'a> Clone for RatingRequestsReadRequest<'a>
impl<'a> Clone for RatingRequestsReadRequest<'a>
source§fn clone(&self) -> RatingRequestsReadRequest<'a>
fn clone(&self) -> RatingRequestsReadRequest<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a> IntoFuture for RatingRequestsReadRequest<'a>
impl<'a> IntoFuture for RatingRequestsReadRequest<'a>
§type Output = Result<RatingRequest, Error<Response<InMemoryBody>>>
type Output = Result<RatingRequest, Error<Response<InMemoryBody>>>
The output that the future will produce on completion.
§type IntoFuture = Pin<Box<dyn Future<Output = <RatingRequestsReadRequest<'a> as IntoFuture>::Output> + Send + 'a, Global>>
type IntoFuture = Pin<Box<dyn Future<Output = <RatingRequestsReadRequest<'a> as IntoFuture>::Output> + Send + 'a, Global>>
Which kind of future are we turning this into?
source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for RatingRequestsReadRequest<'a>
impl<'a> Send for RatingRequestsReadRequest<'a>
impl<'a> Sync for RatingRequestsReadRequest<'a>
impl<'a> Unpin for RatingRequestsReadRequest<'a>
impl<'a> !UnwindSafe for RatingRequestsReadRequest<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more