pub struct RawRpcRequest {
pub id: u32,
pub user: User,
pub data: Option<RpcRequestData>,
}Expand description
A raw RPC request received from a client.
Fields§
§id: u32§user: User§data: Option<RpcRequestData>Trait Implementations§
Auto Trait Implementations§
impl Freeze for RawRpcRequest
impl !RefUnwindSafe for RawRpcRequest
impl Send for RawRpcRequest
impl Sync for RawRpcRequest
impl Unpin for RawRpcRequest
impl !UnwindSafe for RawRpcRequest
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