pub struct ApiSecurityListDiscoveredOperationsParams {
pub service_id: String,
pub status: Option<String>,
pub limit: Option<i32>,
pub page: Option<i32>,
}Expand description
struct for passing parameters to the method api_security_list_discovered_operations
Fields§
§service_id: StringThe unique identifier of the service.
status: Option<String>Filter operations by status. Only operations with this status 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 ApiSecurityListDiscoveredOperationsParams
impl Clone for ApiSecurityListDiscoveredOperationsParams
Source§fn clone(&self) -> ApiSecurityListDiscoveredOperationsParams
fn clone(&self) -> ApiSecurityListDiscoveredOperationsParams
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 ApiSecurityListDiscoveredOperationsParams
impl Default for ApiSecurityListDiscoveredOperationsParams
Source§fn default() -> ApiSecurityListDiscoveredOperationsParams
fn default() -> ApiSecurityListDiscoveredOperationsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ApiSecurityListDiscoveredOperationsParams
impl RefUnwindSafe for ApiSecurityListDiscoveredOperationsParams
impl Send for ApiSecurityListDiscoveredOperationsParams
impl Sync for ApiSecurityListDiscoveredOperationsParams
impl Unpin for ApiSecurityListDiscoveredOperationsParams
impl UnsafeUnpin for ApiSecurityListDiscoveredOperationsParams
impl UnwindSafe for ApiSecurityListDiscoveredOperationsParams
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