pub struct ListCustomDomainsRequest<'a> {
pub created_after: Option<String>,
pub created_before: Option<String>,
pub cursor: Option<String>,
pub domain_type: Option<String>,
pub limit: Option<String>,
pub name: Option<String>,
pub service_id: String,
pub verification_status: 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§
§created_after: Option<String>
§created_before: Option<String>
§cursor: Option<String>
§domain_type: Option<String>
§limit: Option<String>
§name: Option<String>
§service_id: String
§verification_status: Option<String>
Implementations§
source§impl<'a> ListCustomDomainsRequest<'a>
impl<'a> ListCustomDomainsRequest<'a>
pub async fn send(self) -> InMemoryResult<Vec<Value>>
pub fn created_after(self, created_after: &str) -> Self
pub fn created_before(self, created_before: &str) -> Self
pub fn cursor(self, cursor: &str) -> Self
pub fn domain_type(self, domain_type: &str) -> Self
pub fn limit(self, limit: &str) -> Self
pub fn name(self, name: &str) -> Self
pub fn verification_status(self, verification_status: &str) -> Self
Trait Implementations§
source§impl<'a> Clone for ListCustomDomainsRequest<'a>
impl<'a> Clone for ListCustomDomainsRequest<'a>
source§fn clone(&self) -> ListCustomDomainsRequest<'a>
fn clone(&self) -> ListCustomDomainsRequest<'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 ListCustomDomainsRequest<'a>
impl<'a> IntoFuture for ListCustomDomainsRequest<'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 = <ListCustomDomainsRequest<'a> as IntoFuture>::Output> + Send + 'a, Global>>
type IntoFuture = Pin<Box<dyn Future<Output = <ListCustomDomainsRequest<'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