pub struct AgentExpectRequest {
pub window: Option<String>,
pub scope: Option<String>,
pub role: Option<String>,
pub name: Option<String>,
pub text: Option<String>,
pub present: Option<bool>,
pub value: Option<String>,
pub has_state: Option<String>,
}Fields§
§window: Option<String>§scope: Option<String>§role: Option<String>§name: Option<String>§text: Option<String>§present: Option<bool>§value: Option<String>§has_state: Option<String>Trait Implementations§
Source§impl Clone for AgentExpectRequest
impl Clone for AgentExpectRequest
Source§fn clone(&self) -> AgentExpectRequest
fn clone(&self) -> AgentExpectRequest
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 AgentExpectRequest
impl Debug for AgentExpectRequest
Source§impl Default for AgentExpectRequest
impl Default for AgentExpectRequest
Source§fn default() -> AgentExpectRequest
fn default() -> AgentExpectRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentExpectRequest
impl<'de> Deserialize<'de> for AgentExpectRequest
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 AgentExpectRequest
impl RefUnwindSafe for AgentExpectRequest
impl Send for AgentExpectRequest
impl Sync for AgentExpectRequest
impl Unpin for AgentExpectRequest
impl UnsafeUnpin for AgentExpectRequest
impl UnwindSafe for AgentExpectRequest
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