pub struct ListSubaccountsParams {
pub id: i64,
pub label_selector: Option<String>,
pub sort: Option<Vec<String>>,
pub username: Option<String>,
}Expand description
struct for passing parameters to the method list_subaccounts
Fields§
§id: i64ID of the Storage Box.
label_selector: Option<String>Filter resources by labels. The response will only contain resources matching the label selector. For more information, see "Label Selector".
sort: Option<Vec<String>>Sort resources by field and direction. Can be used multiple times. For more information, see "Sorting".
username: Option<String>Filter Storage Box Subaccounts by username. The response will only contain the resources matching exactly the specified username.
Trait Implementations§
Source§impl Clone for ListSubaccountsParams
impl Clone for ListSubaccountsParams
Source§fn clone(&self) -> ListSubaccountsParams
fn clone(&self) -> ListSubaccountsParams
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 ListSubaccountsParams
impl Debug for ListSubaccountsParams
Source§impl Default for ListSubaccountsParams
impl Default for ListSubaccountsParams
Source§fn default() -> ListSubaccountsParams
fn default() -> ListSubaccountsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListSubaccountsParams
impl RefUnwindSafe for ListSubaccountsParams
impl Send for ListSubaccountsParams
impl Sync for ListSubaccountsParams
impl Unpin for ListSubaccountsParams
impl UnsafeUnpin for ListSubaccountsParams
impl UnwindSafe for ListSubaccountsParams
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