pub struct SendReport {
pub publication_id: PublicationId,
pub destination: SocketAddrV4,
pub local_addr: Option<SocketAddrV4>,
pub source_addr: Option<Ipv4Addr>,
pub bytes_sent: usize,
}Expand description
Result of one multicast send call.
Fields§
§publication_id: PublicationId§destination: SocketAddrV4§local_addr: Option<SocketAddrV4>§source_addr: Option<Ipv4Addr>§bytes_sent: usizeTrait Implementations§
Source§impl Clone for SendReport
impl Clone for SendReport
Source§fn clone(&self) -> SendReport
fn clone(&self) -> SendReport
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 SendReport
impl Debug for SendReport
Source§impl PartialEq for SendReport
impl PartialEq for SendReport
impl Copy for SendReport
impl Eq for SendReport
impl StructuralPartialEq for SendReport
Auto Trait Implementations§
impl Freeze for SendReport
impl RefUnwindSafe for SendReport
impl Send for SendReport
impl Sync for SendReport
impl Unpin for SendReport
impl UnsafeUnpin for SendReport
impl UnwindSafe for SendReport
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