pub struct PongData {
pub success: bool,
pub ret_msg: String,
pub conn_id: String,
pub req_id: Option<String>,
pub args: Option<Vec<String>>,
pub op: String,
}Fields§
§success: bool§ret_msg: String§conn_id: String§req_id: Option<String>§args: Option<Vec<String>>§op: StringTrait Implementations§
source§impl<'de> Deserialize<'de> for PongData
impl<'de> Deserialize<'de> for PongData
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Send for PongData
impl Sync for PongData
Auto Trait Implementations§
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