pub struct PingReply {
pub timestamp_ms: Option<u64>,
pub message: Option<String>,
}Expand description
Ping reply payload (may be partial depending on device support).
Fields§
§timestamp_ms: Option<u64>§message: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for PingReply
impl<'de> Deserialize<'de> for PingReply
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 Freeze for PingReply
impl RefUnwindSafe for PingReply
impl Send for PingReply
impl Sync for PingReply
impl Unpin for PingReply
impl UnwindSafe for PingReply
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