pub enum HeaderType {
Type0,
Type1,
Type2 {
timestamp: u64,
agent_version: u32,
reason: u32,
},
Type3 {
timestamp: u64,
agent_version: u32,
reason: u32,
completion_status: u32,
collection_complete: bool,
},
Type4 {
timestamp: u64,
agent_version: u32,
reason: u32,
whoami: u32,
misc: u32,
},
Type5 {
timestamp: u64,
agent_version: u32,
reason: u32,
completion_status: u32,
collection_complete: bool,
error_status: u32,
},
Type6 {
timestamp: u64,
agent_version: u32,
reason: u32,
die_id: u8,
socket_id: u8,
completion_status_size: u16,
completion_status: Vec<u32>,
collection_complete: bool,
},
Type0LegacyServer {
timestamp: u64,
agent_version: u32,
reason: u32,
die_id: u8,
socket_id: u8,
completion_status: u32,
collection_complete: bool,
},
}Variants§
Implementations§
Source§impl HeaderType
impl HeaderType
Trait Implementations§
Source§impl Clone for HeaderType
impl Clone for HeaderType
Source§fn clone(&self) -> HeaderType
fn clone(&self) -> HeaderType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HeaderType
impl Debug for HeaderType
Source§impl Default for HeaderType
impl Default for HeaderType
Source§fn default() -> HeaderType
fn default() -> HeaderType
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for HeaderType
impl RefUnwindSafe for HeaderType
impl Send for HeaderType
impl Sync for HeaderType
impl Unpin for HeaderType
impl UnsafeUnpin for HeaderType
impl UnwindSafe for HeaderType
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