pub struct ListWafUpdateStatusesParams {
pub service_id: String,
pub firewall_id: String,
pub page_number: Option<i32>,
pub page_size: Option<i32>,
pub include: Option<String>,
}
Expand description
struct for passing parameters to the method list_waf_update_statuses
Fields§
§service_id: String
Alphanumeric string identifying the service.
firewall_id: String
Alphanumeric string identifying a Firewall.
page_number: Option<i32>
Current page.
page_size: Option<i32>
Number of records per page.
include: Option<String>
Include relationships. Optional, comma separated values. Permitted values: waf
.
Trait Implementations§
Source§impl Clone for ListWafUpdateStatusesParams
impl Clone for ListWafUpdateStatusesParams
Source§fn clone(&self) -> ListWafUpdateStatusesParams
fn clone(&self) -> ListWafUpdateStatusesParams
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 ListWafUpdateStatusesParams
impl Debug for ListWafUpdateStatusesParams
Source§impl Default for ListWafUpdateStatusesParams
impl Default for ListWafUpdateStatusesParams
Source§fn default() -> ListWafUpdateStatusesParams
fn default() -> ListWafUpdateStatusesParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListWafUpdateStatusesParams
impl RefUnwindSafe for ListWafUpdateStatusesParams
impl Send for ListWafUpdateStatusesParams
impl Sync for ListWafUpdateStatusesParams
impl Unpin for ListWafUpdateStatusesParams
impl UnwindSafe for ListWafUpdateStatusesParams
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