pub struct DdosProtectionEventListParams {
pub cursor: Option<String>,
pub limit: Option<i32>,
pub service_id: Option<String>,
pub from: Option<String>,
pub to: Option<String>,
pub name: Option<String>,
}
Expand description
struct for passing parameters to the method ddos_protection_event_list
Fields§
§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.
service_id: Option<String>
Filter results based on a service_id.
from: Option<String>
Represents the start of a date-time range expressed in RFC 3339 format.
to: Option<String>
Represents the end of a date-time range expressed in RFC 3339 format.
name: Option<String>
Trait Implementations§
Source§impl Clone for DdosProtectionEventListParams
impl Clone for DdosProtectionEventListParams
Source§fn clone(&self) -> DdosProtectionEventListParams
fn clone(&self) -> DdosProtectionEventListParams
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 DdosProtectionEventListParams
impl Default for DdosProtectionEventListParams
Source§fn default() -> DdosProtectionEventListParams
fn default() -> DdosProtectionEventListParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DdosProtectionEventListParams
impl RefUnwindSafe for DdosProtectionEventListParams
impl Send for DdosProtectionEventListParams
impl Sync for DdosProtectionEventListParams
impl Unpin for DdosProtectionEventListParams
impl UnwindSafe for DdosProtectionEventListParams
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