pub struct GetSecretStoresParams {
pub cursor: Option<String>,
pub limit: Option<String>,
pub name: Option<String>,
}
Expand description
struct for passing parameters to the method get_secret_stores
Fields§
§cursor: Option<String>
Cursor value from the next_cursor
field of a previous response, used to retrieve the next page. To request the first page, this should be empty.
limit: Option<String>
Number of results per page. The maximum is 200.
name: Option<String>
Returns a one-element array containing the details for the named secret store.
Trait Implementations§
Source§impl Clone for GetSecretStoresParams
impl Clone for GetSecretStoresParams
Source§fn clone(&self) -> GetSecretStoresParams
fn clone(&self) -> GetSecretStoresParams
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 Debug for GetSecretStoresParams
impl Debug for GetSecretStoresParams
Source§impl Default for GetSecretStoresParams
impl Default for GetSecretStoresParams
Source§fn default() -> GetSecretStoresParams
fn default() -> GetSecretStoresParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetSecretStoresParams
impl RefUnwindSafe for GetSecretStoresParams
impl Send for GetSecretStoresParams
impl Sync for GetSecretStoresParams
impl Unpin for GetSecretStoresParams
impl UnwindSafe for GetSecretStoresParams
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