pub struct TapResult {
pub stages: Option<TapStages>,
pub frame: Option<Rect>,
pub app_frame: Option<Rect>,
}Expand description
POST /tap response body.
Fields§
§stages: Option<TapStages>Per-stage timing breakdown.
frame: Option<Rect>Matched element’s geometric frame, when resolve succeeded.
app_frame: Option<Rect>Application window frame (for normalizing the matched frame).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TapResult
impl<'de> Deserialize<'de> for TapResult
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TapResult, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TapResult, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for TapResult
impl Serialize for TapResult
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for TapResult
impl RefUnwindSafe for TapResult
impl Send for TapResult
impl Sync for TapResult
impl Unpin for TapResult
impl UnsafeUnpin for TapResult
impl UnwindSafe for TapResult
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