pub struct SnapshotListOptions {
pub connection: ConnectionOptions,
pub sandbox_id: Option<String>,
pub limit: Option<u64>,
pub next_token: Option<String>,
}Expand description
Options for listing snapshots.
Fields§
§connection: ConnectionOptionsConnection options used for the control-plane request.
sandbox_id: Option<String>Optional source sandbox id filter.
limit: Option<u64>Maximum number of snapshots to return.
next_token: Option<String>Pagination cursor returned by the previous page.
Trait Implementations§
Source§impl Clone for SnapshotListOptions
impl Clone for SnapshotListOptions
Source§fn clone(&self) -> SnapshotListOptions
fn clone(&self) -> SnapshotListOptions
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 SnapshotListOptions
impl Debug for SnapshotListOptions
Source§impl Default for SnapshotListOptions
impl Default for SnapshotListOptions
Source§fn default() -> SnapshotListOptions
fn default() -> SnapshotListOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SnapshotListOptions
impl RefUnwindSafe for SnapshotListOptions
impl Send for SnapshotListOptions
impl Sync for SnapshotListOptions
impl Unpin for SnapshotListOptions
impl UnsafeUnpin for SnapshotListOptions
impl UnwindSafe for SnapshotListOptions
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