pub struct PickerRequest {
pub action: String,
pub convenience: bool,
pub window_id: String,
pub request_key: Option<String>,
pub timeout_ms: u64,
pub wait_ms: u64,
pub picker_id: Option<String>,
pub capture_screenshot: bool,
pub screenshot_source: String,
pub include_image: bool,
}Fields§
§action: String§convenience: bool§window_id: String§request_key: Option<String>§timeout_ms: u64§wait_ms: u64§picker_id: Option<String>§capture_screenshot: bool§screenshot_source: String§include_image: boolImplementations§
Trait Implementations§
Source§impl Clone for PickerRequest
impl Clone for PickerRequest
Source§fn clone(&self) -> PickerRequest
fn clone(&self) -> PickerRequest
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 moreAuto Trait Implementations§
impl Freeze for PickerRequest
impl RefUnwindSafe for PickerRequest
impl Send for PickerRequest
impl Sync for PickerRequest
impl Unpin for PickerRequest
impl UnsafeUnpin for PickerRequest
impl UnwindSafe for PickerRequest
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