pub struct GetConsoleScreenshotRequest {
pub dry_run: Option<bool>,
pub instance_id: String,
pub wake_up: Option<bool>,
}Fields§
§dry_run: Option<bool>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
instance_id: StringThe ID of the instance.
wake_up: Option<bool>When set to true, acts as keystroke input and wakes up an instance that's in standby or "sleep" mode.
Trait Implementations§
Source§impl Clone for GetConsoleScreenshotRequest
impl Clone for GetConsoleScreenshotRequest
Source§fn clone(&self) -> GetConsoleScreenshotRequest
fn clone(&self) -> GetConsoleScreenshotRequest
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 GetConsoleScreenshotRequest
impl Debug for GetConsoleScreenshotRequest
Source§impl Default for GetConsoleScreenshotRequest
impl Default for GetConsoleScreenshotRequest
Source§fn default() -> GetConsoleScreenshotRequest
fn default() -> GetConsoleScreenshotRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for GetConsoleScreenshotRequest
Auto Trait Implementations§
impl Freeze for GetConsoleScreenshotRequest
impl RefUnwindSafe for GetConsoleScreenshotRequest
impl Send for GetConsoleScreenshotRequest
impl Sync for GetConsoleScreenshotRequest
impl Unpin for GetConsoleScreenshotRequest
impl UnwindSafe for GetConsoleScreenshotRequest
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