pub struct ApiSecurityListOperationsParams {
pub service_id: String,
pub tag_id: Option<String>,
pub limit: Option<i32>,
pub page: Option<i32>,
}Expand description
struct for passing parameters to the method api_security_list_operations
Fields§
§service_id: StringThe unique identifier of the service.
tag_id: Option<String>Filter operations by operation tag ID. Only operations associated with this operation tag will be returned.
limit: Option<i32>The maximum number of operations to return per page.
page: Option<i32>The page number to return.
Trait Implementations§
Source§impl Clone for ApiSecurityListOperationsParams
impl Clone for ApiSecurityListOperationsParams
Source§fn clone(&self) -> ApiSecurityListOperationsParams
fn clone(&self) -> ApiSecurityListOperationsParams
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 ApiSecurityListOperationsParams
impl Default for ApiSecurityListOperationsParams
Source§fn default() -> ApiSecurityListOperationsParams
fn default() -> ApiSecurityListOperationsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ApiSecurityListOperationsParams
impl RefUnwindSafe for ApiSecurityListOperationsParams
impl Send for ApiSecurityListOperationsParams
impl Sync for ApiSecurityListOperationsParams
impl Unpin for ApiSecurityListOperationsParams
impl UnsafeUnpin for ApiSecurityListOperationsParams
impl UnwindSafe for ApiSecurityListOperationsParams
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