#[non_exhaustive]pub struct ListCustomCostsFilesOptionalParams {
pub page_number: Option<i64>,
pub page_size: Option<i64>,
pub filter_status: Option<String>,
pub sort: Option<String>,
}
Expand description
ListCustomCostsFilesOptionalParams is a struct for passing parameters to the method CloudCostManagementAPI::list_custom_costs_files
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.page_number: Option<i64>
Page number for pagination
page_size: Option<i64>
Page size for pagination
filter_status: Option<String>
Filter by file status
sort: Option<String>
Sort key with optional descending prefix
Implementations§
Source§impl ListCustomCostsFilesOptionalParams
impl ListCustomCostsFilesOptionalParams
Sourcepub fn page_number(self, value: i64) -> Self
pub fn page_number(self, value: i64) -> Self
Page number for pagination
Sourcepub fn filter_status(self, value: String) -> Self
pub fn filter_status(self, value: String) -> Self
Filter by file status
Trait Implementations§
Source§impl Clone for ListCustomCostsFilesOptionalParams
impl Clone for ListCustomCostsFilesOptionalParams
Source§fn clone(&self) -> ListCustomCostsFilesOptionalParams
fn clone(&self) -> ListCustomCostsFilesOptionalParams
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 ListCustomCostsFilesOptionalParams
impl Default for ListCustomCostsFilesOptionalParams
Source§fn default() -> ListCustomCostsFilesOptionalParams
fn default() -> ListCustomCostsFilesOptionalParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListCustomCostsFilesOptionalParams
impl RefUnwindSafe for ListCustomCostsFilesOptionalParams
impl Send for ListCustomCostsFilesOptionalParams
impl Sync for ListCustomCostsFilesOptionalParams
impl Unpin for ListCustomCostsFilesOptionalParams
impl UnwindSafe for ListCustomCostsFilesOptionalParams
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