pub struct DriveBridgeRequest {
pub schema_version: u8,
pub protocol_version: u8,
pub request_id: String,
pub action: String,
pub selector: Option<String>,
pub value: Option<String>,
pub values: Vec<String>,
pub visible_only: bool,
pub window_label: Option<String>,
pub test_id: Option<String>,
pub step_id: Option<String>,
pub created_at_unix_nanos: i64,
}Fields§
§schema_version: u8§protocol_version: u8§request_id: String§action: String§selector: Option<String>§value: Option<String>§values: Vec<String>§visible_only: bool§window_label: Option<String>§test_id: Option<String>§step_id: Option<String>§created_at_unix_nanos: i64Trait Implementations§
Source§impl Clone for DriveBridgeRequest
impl Clone for DriveBridgeRequest
Source§fn clone(&self) -> DriveBridgeRequest
fn clone(&self) -> DriveBridgeRequest
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 DriveBridgeRequest
impl Debug for DriveBridgeRequest
Source§impl<'de> Deserialize<'de> for DriveBridgeRequest
impl<'de> Deserialize<'de> for DriveBridgeRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DriveBridgeRequest
impl RefUnwindSafe for DriveBridgeRequest
impl Send for DriveBridgeRequest
impl Sync for DriveBridgeRequest
impl Unpin for DriveBridgeRequest
impl UnsafeUnpin for DriveBridgeRequest
impl UnwindSafe for DriveBridgeRequest
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