pub struct HeadTable {
pub stx: u8,
pub status: u8,
pub mtype: u8,
pub length: u8,
pub t_num: u8,
pub page_index: u8,
pub max_page_index: u8,
}Expand description
Next tables are defined to recognize gsof tables as are formatted. Head table contains all the information to retrieve the body and tail of message
Fields§
§stx: u8§status: u8§mtype: u8§length: u8§t_num: u8§page_index: u8§max_page_index: u8Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for HeadTable
impl<'de> Deserialize<'de> for HeadTable
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
Source§impl GsofTable for HeadTable
impl GsofTable for HeadTable
Source§fn table_name(&self) -> &str
fn table_name(&self) -> &str
Returns the table name for HeadTable
impl Copy for HeadTable
Auto Trait Implementations§
impl Freeze for HeadTable
impl RefUnwindSafe for HeadTable
impl Send for HeadTable
impl Sync for HeadTable
impl Unpin for HeadTable
impl UnwindSafe for HeadTable
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