pub struct AgentWaitRequest {
pub window: Option<String>,
pub text: Option<String>,
pub scope: Option<String>,
pub role: Option<String>,
pub name: Option<String>,
pub timeout_ms: Option<u64>,
pub state: Option<String>,
pub wait_fn: Option<String>,
pub network_idle: Option<bool>,
pub idle_ms: Option<u64>,
}Fields§
§window: Option<String>§text: Option<String>§scope: Option<String>§role: Option<String>§name: Option<String>§timeout_ms: Option<u64>§state: Option<String>§wait_fn: Option<String>§network_idle: Option<bool>§idle_ms: Option<u64>Trait Implementations§
Source§impl Clone for AgentWaitRequest
impl Clone for AgentWaitRequest
Source§fn clone(&self) -> AgentWaitRequest
fn clone(&self) -> AgentWaitRequest
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 AgentWaitRequest
impl Debug for AgentWaitRequest
Source§impl<'de> Deserialize<'de> for AgentWaitRequest
impl<'de> Deserialize<'de> for AgentWaitRequest
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 AgentWaitRequest
impl RefUnwindSafe for AgentWaitRequest
impl Send for AgentWaitRequest
impl Sync for AgentWaitRequest
impl Unpin for AgentWaitRequest
impl UnsafeUnpin for AgentWaitRequest
impl UnwindSafe for AgentWaitRequest
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