pub struct PrivatePongResponse<'a> {
pub req_id: Option<&'a str>,
pub op: &'a str,
pub args: [&'a str; 1],
pub conn_id: &'a str,
}Expand description
The pong response of private channels.
Fields§
§req_id: Option<&'a str>§op: &'a str§args: [&'a str; 1]§conn_id: &'a strTrait Implementations§
Source§impl<'a> Debug for PrivatePongResponse<'a>
impl<'a> Debug for PrivatePongResponse<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for PrivatePongResponse<'a>
impl<'de: 'a, 'a> Deserialize<'de> for PrivatePongResponse<'a>
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
Auto Trait Implementations§
impl<'a> Freeze for PrivatePongResponse<'a>
impl<'a> RefUnwindSafe for PrivatePongResponse<'a>
impl<'a> Send for PrivatePongResponse<'a>
impl<'a> Sync for PrivatePongResponse<'a>
impl<'a> Unpin for PrivatePongResponse<'a>
impl<'a> UnwindSafe for PrivatePongResponse<'a>
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