#[derive(Debug, Clone, PartialEq)]/// Entity status request message
pubstructEntityStatusRequest{}/// Entity status response
////// This response from the DoIP entity gives to the DoIP external tester
/// information about the limitations of the DoIP entity.
#[derive(Debug, Clone, PartialEq)]pubstructEntityStatusResponse{/// Node type
pubnode_type:u8,
/// Maximum number of connections supported.
pubmax_open_sockets:u8,
/// Current number of connections opened.
pubcur_open_sockets:u8,
/// Maximum length of a DoIP message which can be received.
pubmax_data_size:u32,
}