pub struct SecurityCategoryQuery {
pub sort: Option<SortDirection>,
pub cursor: Option<String>,
pub limit: Option<i32>,
}Expand description
Filter security categories.
Fields§
§sort: Option<SortDirection>Sort security categories in ascending or descending order.
cursor: Option<String>Cursor for pagination.
limit: Option<i32>Optional limit. Default is 25, maximum is 1000.
Trait Implementations§
Source§impl Debug for SecurityCategoryQuery
impl Debug for SecurityCategoryQuery
Source§impl Default for SecurityCategoryQuery
impl Default for SecurityCategoryQuery
Source§fn default() -> SecurityCategoryQuery
fn default() -> SecurityCategoryQuery
Returns the “default value” for a type. Read more
Source§impl IntoParams for SecurityCategoryQuery
impl IntoParams for SecurityCategoryQuery
Source§impl SetCursor for SecurityCategoryQuery
impl SetCursor for SecurityCategoryQuery
Source§fn set_cursor(&mut self, cursor: Option<String>)
fn set_cursor(&mut self, cursor: Option<String>)
Set cursor to the given value.
Auto Trait Implementations§
impl Freeze for SecurityCategoryQuery
impl RefUnwindSafe for SecurityCategoryQuery
impl Send for SecurityCategoryQuery
impl Sync for SecurityCategoryQuery
impl Unpin for SecurityCategoryQuery
impl UnwindSafe for SecurityCategoryQuery
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