pub struct SandboxListPage {
pub sandboxes: Vec<SandboxInfo>,
pub next_token: Option<String>,
}Expand description
One page of sandbox list results.
Fields§
§sandboxes: Vec<SandboxInfo>Sandboxes returned on this page.
next_token: Option<String>Cursor for the next page, when more results exist.
Trait Implementations§
Source§impl Clone for SandboxListPage
impl Clone for SandboxListPage
Source§fn clone(&self) -> SandboxListPage
fn clone(&self) -> SandboxListPage
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 SandboxListPage
impl Debug for SandboxListPage
Source§impl Default for SandboxListPage
impl Default for SandboxListPage
Source§fn default() -> SandboxListPage
fn default() -> SandboxListPage
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SandboxListPage
impl RefUnwindSafe for SandboxListPage
impl Send for SandboxListPage
impl Sync for SandboxListPage
impl Unpin for SandboxListPage
impl UnsafeUnpin for SandboxListPage
impl UnwindSafe for SandboxListPage
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