pub struct GetSecretsParams {
pub store_id: String,
pub cursor: Option<String>,
pub limit: Option<String>,
}
Expand description
struct for passing parameters to the method get_secrets
Fields§
§store_id: String
§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.
Trait Implementations§
Source§impl Clone for GetSecretsParams
impl Clone for GetSecretsParams
Source§fn clone(&self) -> GetSecretsParams
fn clone(&self) -> GetSecretsParams
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 GetSecretsParams
impl Debug for GetSecretsParams
Source§impl Default for GetSecretsParams
impl Default for GetSecretsParams
Source§fn default() -> GetSecretsParams
fn default() -> GetSecretsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetSecretsParams
impl RefUnwindSafe for GetSecretsParams
impl Send for GetSecretsParams
impl Sync for GetSecretsParams
impl Unpin for GetSecretsParams
impl UnwindSafe for GetSecretsParams
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