#[non_exhaustive]pub struct GetRequestValidatorsInput {
pub rest_api_id: Option<String>,
pub position: Option<String>,
pub limit: Option<i32>,
}
Expand description
Gets the RequestValidators collection of a given RestApi.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.rest_api_id: Option<String>
The string identifier of the associated RestApi.
position: Option<String>
The current pagination position in the paged result set.
limit: Option<i32>
The maximum number of returned results per page. The default value is 25 and the maximum value is 500.
Implementations§
source§impl GetRequestValidatorsInput
impl GetRequestValidatorsInput
source§impl GetRequestValidatorsInput
impl GetRequestValidatorsInput
sourcepub fn builder() -> GetRequestValidatorsInputBuilder
pub fn builder() -> GetRequestValidatorsInputBuilder
Creates a new builder-style object to manufacture GetRequestValidatorsInput
.
Trait Implementations§
source§impl Clone for GetRequestValidatorsInput
impl Clone for GetRequestValidatorsInput
source§fn clone(&self) -> GetRequestValidatorsInput
fn clone(&self) -> GetRequestValidatorsInput
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 Debug for GetRequestValidatorsInput
impl Debug for GetRequestValidatorsInput
source§impl PartialEq<GetRequestValidatorsInput> for GetRequestValidatorsInput
impl PartialEq<GetRequestValidatorsInput> for GetRequestValidatorsInput
source§fn eq(&self, other: &GetRequestValidatorsInput) -> bool
fn eq(&self, other: &GetRequestValidatorsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetRequestValidatorsInput
Auto Trait Implementations§
impl RefUnwindSafe for GetRequestValidatorsInput
impl Send for GetRequestValidatorsInput
impl Sync for GetRequestValidatorsInput
impl Unpin for GetRequestValidatorsInput
impl UnwindSafe for GetRequestValidatorsInput
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