Struct render_api::request::list_deploys::ListDeploysRequest
source · pub struct ListDeploysRequest<'a> {
pub cursor: Option<String>,
pub end_time: Option<String>,
pub limit: Option<i64>,
pub service_id: String,
pub start_time: 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>
§end_time: Option<String>
§limit: Option<i64>
§service_id: String
§start_time: Option<String>
Implementations§
source§impl<'a> ListDeploysRequest<'a>
impl<'a> ListDeploysRequest<'a>
Trait Implementations§
source§impl<'a> Clone for ListDeploysRequest<'a>
impl<'a> Clone for ListDeploysRequest<'a>
source§fn clone(&self) -> ListDeploysRequest<'a>
fn clone(&self) -> ListDeploysRequest<'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 ListDeploysRequest<'a>
impl<'a> IntoFuture for ListDeploysRequest<'a>
§type Output = Result<Vec<DeployCursor, Global>, Error<InMemoryBody>>
type Output = Result<Vec<DeployCursor, Global>, Error<InMemoryBody>>
The output that the future will produce on completion.
§type IntoFuture = Pin<Box<dyn Future<Output = <ListDeploysRequest<'a> as IntoFuture>::Output> + Send + 'a, Global>>
type IntoFuture = Pin<Box<dyn Future<Output = <ListDeploysRequest<'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