#[repr(C)]pub struct IoEntityStatusData {
pub entity_type: u32,
pub tcp_clients_max: u32,
pub tcp_clients: u32,
pub max_data_size: u32,
}
Expand description
DoIP IO Entity status data
Fields§
§entity_type: u32
Type of DoIP entitiy
tcp_clients_max: u32
Max number of Sockets allowed
tcp_clients: u32
Number of current sockets
max_data_size: u32
Optional limit in bytes for max size of a single DoIP request
Trait Implementations§
Source§impl Clone for IoEntityStatusData
impl Clone for IoEntityStatusData
Source§fn clone(&self) -> IoEntityStatusData
fn clone(&self) -> IoEntityStatusData
Returns a copy 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 IoEntityStatusData
impl Debug for IoEntityStatusData
Source§impl Ord for IoEntityStatusData
impl Ord for IoEntityStatusData
Source§fn cmp(&self, other: &IoEntityStatusData) -> Ordering
fn cmp(&self, other: &IoEntityStatusData) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IoEntityStatusData
impl PartialEq for IoEntityStatusData
Source§impl PartialOrd for IoEntityStatusData
impl PartialOrd for IoEntityStatusData
impl Copy for IoEntityStatusData
impl Eq for IoEntityStatusData
impl StructuralPartialEq for IoEntityStatusData
Auto Trait Implementations§
impl Freeze for IoEntityStatusData
impl RefUnwindSafe for IoEntityStatusData
impl Send for IoEntityStatusData
impl Sync for IoEntityStatusData
impl Unpin for IoEntityStatusData
impl UnwindSafe for IoEntityStatusData
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