pub struct StorageListOptions {
pub account_id: i64,
pub search: Option<String>,
pub region_id: Option<i64>,
pub storage_type: Option<String>,
pub provider_type: Option<String>,
pub is_active: Option<bool>,
pub page: Option<i64>,
pub limit: Option<i64>,
}Fields§
§account_id: i64§search: Option<String>§region_id: Option<i64>§storage_type: Option<String>§provider_type: Option<String>§is_active: Option<bool>§page: Option<i64>§limit: Option<i64>Trait Implementations§
Source§impl Clone for StorageListOptions
impl Clone for StorageListOptions
Source§fn clone(&self) -> StorageListOptions
fn clone(&self) -> StorageListOptions
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 StorageListOptions
impl Debug for StorageListOptions
Source§impl Default for StorageListOptions
impl Default for StorageListOptions
Source§fn default() -> StorageListOptions
fn default() -> StorageListOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StorageListOptions
impl RefUnwindSafe for StorageListOptions
impl Send for StorageListOptions
impl Sync for StorageListOptions
impl Unpin for StorageListOptions
impl UnsafeUnpin for StorageListOptions
impl UnwindSafe for StorageListOptions
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