pub struct SenderReport {
pub sender_info: SenderInfo,
pub reports: ReportList<ReceptionReport>,
}
Expand description
A report of packets sent.
Fields§
§sender_info: SenderInfo
Information about the sender of this report.
reports: ReportList<ReceptionReport>
A sender report is implicitly also a receiver report. This might hold data that would otherwise come in a separate RR.
Trait Implementations§
Source§impl Clone for SenderReport
impl Clone for SenderReport
Source§fn clone(&self) -> SenderReport
fn clone(&self) -> SenderReport
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 SenderReport
impl Debug for SenderReport
Source§impl PartialEq for SenderReport
impl PartialEq for SenderReport
Source§impl<'a> TryFrom<&'a [u8]> for SenderReport
impl<'a> TryFrom<&'a [u8]> for SenderReport
impl Eq for SenderReport
impl StructuralPartialEq for SenderReport
Auto Trait Implementations§
impl Freeze for SenderReport
impl RefUnwindSafe for SenderReport
impl Send for SenderReport
impl Sync for SenderReport
impl Unpin for SenderReport
impl UnwindSafe for SenderReport
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