pub struct RetrieveHeadersRequest<'a> {
pub cursor: Option<String>,
pub limit: Option<String>,
pub name: Option<String>,
pub path: Option<String>,
pub service_id: String,
pub value: Option<String>,
/* 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§
§cursor: Option<String>
§limit: Option<String>
§name: Option<String>
§path: Option<String>
§service_id: String
§value: Option<String>
Implementations§
source§impl<'a> RetrieveHeadersRequest<'a>
impl<'a> RetrieveHeadersRequest<'a>
Trait Implementations§
source§impl<'a> Clone for RetrieveHeadersRequest<'a>
impl<'a> Clone for RetrieveHeadersRequest<'a>
source§fn clone(&self) -> RetrieveHeadersRequest<'a>
fn clone(&self) -> RetrieveHeadersRequest<'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 RetrieveHeadersRequest<'a>
impl<'a> IntoFuture for RetrieveHeadersRequest<'a>
§type Output = Result<Vec<Value, Global>, Error<InMemoryBody>>
type Output = Result<Vec<Value, Global>, Error<InMemoryBody>>
The output that the future will produce on completion.
§type IntoFuture = Pin<Box<dyn Future<Output = <RetrieveHeadersRequest<'a> as IntoFuture>::Output> + Send + 'a, Global>>
type IntoFuture = Pin<Box<dyn Future<Output = <RetrieveHeadersRequest<'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