pub struct CommentReliablePdu {
pub pdu_header: PduHeader,
pub originating_entity_id: EntityId,
pub receiving_entity_id: EntityId,
pub number_of_fixed_datum_records: u32,
pub number_of_variable_datum_records: u32,
pub fixed_datum_records: u64,
pub variable_datum_records: u64,
}Expand description
Implemented according to IEEE 1278.1-2012 §7.11.13
Fields§
§pdu_header: PduHeader§originating_entity_id: EntityId§receiving_entity_id: EntityId§number_of_fixed_datum_records: u32§number_of_variable_datum_records: u32§fixed_datum_records: u64§variable_datum_records: u64Trait Implementations§
Source§impl Clone for CommentReliablePdu
impl Clone for CommentReliablePdu
Source§fn clone(&self) -> CommentReliablePdu
fn clone(&self) -> CommentReliablePdu
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 CommentReliablePdu
impl Debug for CommentReliablePdu
Source§impl Default for CommentReliablePdu
impl Default for CommentReliablePdu
Source§impl Pdu for CommentReliablePdu
impl Pdu for CommentReliablePdu
impl Copy for CommentReliablePdu
Auto Trait Implementations§
impl Freeze for CommentReliablePdu
impl RefUnwindSafe for CommentReliablePdu
impl Send for CommentReliablePdu
impl Sync for CommentReliablePdu
impl Unpin for CommentReliablePdu
impl UnwindSafe for CommentReliablePdu
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