pub struct ReadyAck {
pub ok: bool,
pub host_time_unix_ms: Option<u64>,
}Expand description
Acknowledgment sent by host
Fields§
§ok: boolAlways true unless host rejects
host_time_unix_ms: Option<u64>Host time in unix milliseconds (optional; helps debug clock/timing)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReadyAck
impl RefUnwindSafe for ReadyAck
impl Send for ReadyAck
impl Sync for ReadyAck
impl Unpin for ReadyAck
impl UnwindSafe for ReadyAck
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