pub struct RpcRequest<C: CustomTypes<S>, S: System<C>> {
pub host: Option<CompactString>,
pub service: CompactString,
pub rpc: CompactString,
pub args: VecMap<CompactString, Json, false>,
pub key: AsyncKey<Result<C::Intermediate, CompactString>>,
}
Fields§
§host: Option<CompactString>
§service: CompactString
§rpc: CompactString
§args: VecMap<CompactString, Json, false>
§key: AsyncKey<Result<C::Intermediate, CompactString>>
Auto Trait Implementations§
impl<C, S> Freeze for RpcRequest<C, S>
impl<C, S> RefUnwindSafe for RpcRequest<C, S>
impl<C, S> Send for RpcRequest<C, S>
impl<C, S> Sync for RpcRequest<C, S>
impl<C, S> Unpin for RpcRequest<C, S>
impl<C, S> UnwindSafe for RpcRequest<C, S>
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