pub struct KvStoreListParams {
pub cursor: Option<String>,
pub limit: Option<i32>,
pub name: Option<String>,
}
Expand description
struct for passing parameters to the method kv_store_list
Fields§
§cursor: Option<String>
§limit: Option<i32>
§name: Option<String>
Returns a one-element array containing the details for the named KV store.
Trait Implementations§
Source§impl Clone for KvStoreListParams
impl Clone for KvStoreListParams
Source§fn clone(&self) -> KvStoreListParams
fn clone(&self) -> KvStoreListParams
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 KvStoreListParams
impl Debug for KvStoreListParams
Source§impl Default for KvStoreListParams
impl Default for KvStoreListParams
Source§fn default() -> KvStoreListParams
fn default() -> KvStoreListParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for KvStoreListParams
impl RefUnwindSafe for KvStoreListParams
impl Send for KvStoreListParams
impl Sync for KvStoreListParams
impl Unpin for KvStoreListParams
impl UnwindSafe for KvStoreListParams
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