pub struct RepairResponsePdu {
pub receiving_entity_id: EntityId,
pub repairing_entity_id: EntityId,
pub repair_result: RepairResponseRepairResult,
/* private fields */
}Expand description
Implemented according to IEEE 1278.1-2012 §7.4.7
Fields§
§receiving_entity_id: EntityId§repairing_entity_id: EntityId§repair_result: RepairResponseRepairResultImplementations§
Trait Implementations§
Source§impl Debug for RepairResponsePdu
impl Debug for RepairResponsePdu
Source§impl Default for RepairResponsePdu
impl Default for RepairResponsePdu
Source§impl Pdu for RepairResponsePdu
impl Pdu for RepairResponsePdu
type Header = PduHeader
fn header(&self) -> &Self::Header
fn header_mut(&mut self) -> &mut Self::Header
Source§fn deserialize<B: Buf>(buf: &mut B) -> Result<Self, DISError>where
Self: Sized,
fn deserialize<B: Buf>(buf: &mut B) -> Result<Self, DISError>where
Self: Sized,
Errors Read more
Source§fn deserialize_without_header<B: Buf>(
buf: &mut B,
header: Self::Header,
) -> Result<Self, DISError>where
Self: Sized,
fn deserialize_without_header<B: Buf>(
buf: &mut B,
header: Self::Header,
) -> Result<Self, DISError>where
Self: Sized,
Errors Read more
fn as_any(&self) -> &dyn Any
fn finalize(&mut self)
Auto Trait Implementations§
impl Freeze for RepairResponsePdu
impl RefUnwindSafe for RepairResponsePdu
impl Send for RepairResponsePdu
impl Sync for RepairResponsePdu
impl Unpin for RepairResponsePdu
impl UnwindSafe for RepairResponsePdu
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