pub struct ListRulesRequest {
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 ListRules requests, specify the value of NextMarker from the previous response to get information about another batch of Rules.
Trait Implementations§
Source§impl Clone for ListRulesRequest
impl Clone for ListRulesRequest
Source§fn clone(&self) -> ListRulesRequest
fn clone(&self) -> ListRulesRequest
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 ListRulesRequest
impl Debug for ListRulesRequest
Source§impl Default for ListRulesRequest
impl Default for ListRulesRequest
Source§fn default() -> ListRulesRequest
fn default() -> ListRulesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListRulesRequest
impl PartialEq for ListRulesRequest
Source§impl Serialize for ListRulesRequest
impl Serialize for ListRulesRequest
impl StructuralPartialEq for ListRulesRequest
Auto Trait Implementations§
impl Freeze for ListRulesRequest
impl RefUnwindSafe for ListRulesRequest
impl Send for ListRulesRequest
impl Sync for ListRulesRequest
impl Unpin for ListRulesRequest
impl UnwindSafe for ListRulesRequest
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