pub struct GetRecordsOptions {
pub collection: Option<String>,
pub prefix: Option<String>,
pub signature: Option<String>,
}Expand description
Options for downloading all records as a ZIP archive via
KeyValueStoreClient::get_records.
Covers the spec query parameters of GET /v2/key-value-stores/{storeId}/records.
Fields§
§collection: Option<String>Only include records belonging to this collection from the store schema.
prefix: Option<String>Only include records whose key starts with this prefix.
signature: Option<String>URL-signing signature granting access to a private store’s records.
Trait Implementations§
Source§impl Clone for GetRecordsOptions
impl Clone for GetRecordsOptions
Source§fn clone(&self) -> GetRecordsOptions
fn clone(&self) -> GetRecordsOptions
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 GetRecordsOptions
impl Debug for GetRecordsOptions
Source§impl Default for GetRecordsOptions
impl Default for GetRecordsOptions
Source§fn default() -> GetRecordsOptions
fn default() -> GetRecordsOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetRecordsOptions
impl RefUnwindSafe for GetRecordsOptions
impl Send for GetRecordsOptions
impl Sync for GetRecordsOptions
impl Unpin for GetRecordsOptions
impl UnsafeUnpin for GetRecordsOptions
impl UnwindSafe for GetRecordsOptions
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