pub struct KrpcMsg {
pub unique_identifier: String,
pub version: Option<String>,
pub class_name: String,
pub method_name: String,
pub req: Vec<String>,
pub res: Result<String, RpcError>,
}Fields§
§unique_identifier: String§version: Option<String>§class_name: String§method_name: String§req: Vec<String>§res: Result<String, RpcError>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for KrpcMsg
impl RefUnwindSafe for KrpcMsg
impl Send for KrpcMsg
impl Sync for KrpcMsg
impl Unpin for KrpcMsg
impl UnwindSafe for KrpcMsg
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