pub struct ListRateBasedRulesRequest {
pub limit: Option<i64>,
pub next_marker: Option<String>,
}Fields§
§limit: Option<i64>Specifies the number of Rules that you want AWS WAF to return for this request. If you have more Rules than the number that you specify for Limit, the response includes a NextMarker value that you can use to get another batch of Rules.
next_marker: Option<String>If you specify a value for Limit and you have more Rules than the value of Limit, AWS WAF returns a NextMarker value in the response that allows you to list another group of Rules. For the second and subsequent ListRateBasedRules requests, specify the value of NextMarker from the previous response to get information about another batch of Rules.
Trait Implementations§
Source§impl Clone for ListRateBasedRulesRequest
impl Clone for ListRateBasedRulesRequest
Source§fn clone(&self) -> ListRateBasedRulesRequest
fn clone(&self) -> ListRateBasedRulesRequest
Returns a duplicate 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 ListRateBasedRulesRequest
impl Debug for ListRateBasedRulesRequest
Source§impl Default for ListRateBasedRulesRequest
impl Default for ListRateBasedRulesRequest
Source§fn default() -> ListRateBasedRulesRequest
fn default() -> ListRateBasedRulesRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListRateBasedRulesRequest
Auto Trait Implementations§
impl Freeze for ListRateBasedRulesRequest
impl RefUnwindSafe for ListRateBasedRulesRequest
impl Send for ListRateBasedRulesRequest
impl Sync for ListRateBasedRulesRequest
impl Unpin for ListRateBasedRulesRequest
impl UnwindSafe for ListRateBasedRulesRequest
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