pub struct AgentWindowRequest {
pub window: Option<String>,
pub action: Option<WindowAction>,
pub x: Option<i32>,
pub y: Option<i32>,
pub width: Option<u32>,
pub height: Option<u32>,
}Fields§
§window: Option<String>§action: Option<WindowAction>§x: Option<i32>§y: Option<i32>§width: Option<u32>§height: Option<u32>Trait Implementations§
Source§impl Clone for AgentWindowRequest
impl Clone for AgentWindowRequest
Source§fn clone(&self) -> AgentWindowRequest
fn clone(&self) -> AgentWindowRequest
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 AgentWindowRequest
impl Debug for AgentWindowRequest
Source§impl Default for AgentWindowRequest
impl Default for AgentWindowRequest
Source§fn default() -> AgentWindowRequest
fn default() -> AgentWindowRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentWindowRequest
impl<'de> Deserialize<'de> for AgentWindowRequest
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 AgentWindowRequest
impl RefUnwindSafe for AgentWindowRequest
impl Send for AgentWindowRequest
impl Sync for AgentWindowRequest
impl Unpin for AgentWindowRequest
impl UnsafeUnpin for AgentWindowRequest
impl UnwindSafe for AgentWindowRequest
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