pub enum ControlResponse {
Success(Value),
Error {
error: String,
message: String,
stacktrace: String,
},
}Expand description
A renderer response represented using W3C WebDriver success/error values.
Variants§
Implementations§
Source§impl ControlResponse
impl ControlResponse
pub fn unsupported(message: impl Into<String>) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ControlResponse
impl RefUnwindSafe for ControlResponse
impl Send for ControlResponse
impl Sync for ControlResponse
impl Unpin for ControlResponse
impl UnsafeUnpin for ControlResponse
impl UnwindSafe for ControlResponse
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