pub struct WsRequest {
pub req_id: String,
pub op: String,
pub args: Vec<String>,
}Expand description
WebSocket operation request.
Fields§
§req_id: StringRequest ID
op: StringOperation type
args: Vec<String>Arguments
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WsRequest
impl RefUnwindSafe for WsRequest
impl Send for WsRequest
impl Sync for WsRequest
impl Unpin for WsRequest
impl UnsafeUnpin for WsRequest
impl UnwindSafe for WsRequest
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