pub struct DdosProtectionEventRuleListParams {
pub event_id: String,
pub cursor: Option<String>,
pub limit: Option<i32>,
}
Expand description
struct for passing parameters to the method ddos_protection_event_rule_list
Fields§
§event_id: String
Unique ID of the event.
cursor: Option<String>
Cursor value from the next_cursor
field of a previous response, used to retrieve the next page. To request the first page, this should be empty.
limit: Option<i32>
Limit how many results are returned.
Trait Implementations§
Source§impl Clone for DdosProtectionEventRuleListParams
impl Clone for DdosProtectionEventRuleListParams
Source§fn clone(&self) -> DdosProtectionEventRuleListParams
fn clone(&self) -> DdosProtectionEventRuleListParams
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 Default for DdosProtectionEventRuleListParams
impl Default for DdosProtectionEventRuleListParams
Source§fn default() -> DdosProtectionEventRuleListParams
fn default() -> DdosProtectionEventRuleListParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DdosProtectionEventRuleListParams
impl RefUnwindSafe for DdosProtectionEventRuleListParams
impl Send for DdosProtectionEventRuleListParams
impl Sync for DdosProtectionEventRuleListParams
impl Unpin for DdosProtectionEventRuleListParams
impl UnwindSafe for DdosProtectionEventRuleListParams
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