#[repr(C)]pub struct RiceStreamIncomingData {
pub handled: bool,
pub have_more_data: bool,
pub data: RiceDataImpl,
}Expand description
Return value for rice_stream_handle_incoming_data().
Fields§
§handled: boolThe data was handled internally. rice_agent_poll() should be called at the
next earliest opportunity.
have_more_data: boolWhether there is more data to pull using rice_stream_poll_recv().
data: RiceDataImplThe data pointer. If non-NULL, this is the same value as provided to
rice_stream_handle_incoming_data() and has the same lifetime contraints as that original
data pointer.