pub struct CspListPolicyReportsParams {
pub page_id: String,
pub policy_id: String,
pub limit: Option<i32>,
pub page: Option<i32>,
}Expand description
struct for passing parameters to the method csp_list_policy_reports
Fields§
§page_id: StringPage identifier
policy_id: StringPolicy identifier
limit: Option<i32>Limit how many results are returned.
page: Option<i32>Page number of the collection to request.
Trait Implementations§
Source§impl Clone for CspListPolicyReportsParams
impl Clone for CspListPolicyReportsParams
Source§fn clone(&self) -> CspListPolicyReportsParams
fn clone(&self) -> CspListPolicyReportsParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CspListPolicyReportsParams
impl Debug for CspListPolicyReportsParams
Source§impl Default for CspListPolicyReportsParams
impl Default for CspListPolicyReportsParams
Source§fn default() -> CspListPolicyReportsParams
fn default() -> CspListPolicyReportsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CspListPolicyReportsParams
impl RefUnwindSafe for CspListPolicyReportsParams
impl Send for CspListPolicyReportsParams
impl Sync for CspListPolicyReportsParams
impl Unpin for CspListPolicyReportsParams
impl UnsafeUnpin for CspListPolicyReportsParams
impl UnwindSafe for CspListPolicyReportsParams
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