#[repr(C)]pub struct RiceTransmit {
pub stream_id: usize,
pub transport: RiceTransportType,
pub from: *const RiceAddress,
pub to: *const RiceAddress,
pub data: RiceDataImpl,
}Expand description
Transmit the data using the specified 5-tuple.
Fields§
§stream_id: usizeThe associated stream identifier.
transport: RiceTransportTypeThe transport type for the transmission.
from: *const RiceAddressThe socket source address to send from.
to: *const RiceAddressThe socket destination address to send to.
data: RiceDataImplThe data to send.