pub struct ResponseHeader {
pub response_version: u8,
pub response_type: u8,
pub unsynchronized_flag: bool,
}
Expand description
A structure for holding the header of the received response.
Fields§
§response_version: u8
The version of the response received from ClockBoundD.
response_type: u8
The type of the response received from ClockBoundD.
unsynchronized_flag: bool
A flag representing if Chrony is reporting as unsynchronized.
Auto Trait Implementations§
impl Freeze for ResponseHeader
impl RefUnwindSafe for ResponseHeader
impl Send for ResponseHeader
impl Sync for ResponseHeader
impl Unpin for ResponseHeader
impl UnwindSafe for ResponseHeader
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