Struct iscp::message::UpstreamChunkAck
source · pub struct UpstreamChunkAck {
pub stream_id_alias: u32,
pub results: Vec<UpstreamChunkResult>,
pub data_id_aliases: DataIdAliasMap,
}Expand description
ストリームチャンク(上り用)に対する確認応答です。
Fields
stream_id_alias: u32ストリームIDエイリアス
results: Vec<UpstreamChunkResult>処理結果
data_id_aliases: DataIdAliasMapデータIDエイリアス
Trait Implementations
sourceimpl Clone for UpstreamChunkAck
impl Clone for UpstreamChunkAck
sourcefn clone(&self) -> UpstreamChunkAck
fn clone(&self) -> UpstreamChunkAck
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for UpstreamChunkAck
impl Debug for UpstreamChunkAck
sourceimpl Default for UpstreamChunkAck
impl Default for UpstreamChunkAck
sourcefn default() -> UpstreamChunkAck
fn default() -> UpstreamChunkAck
Returns the “default value” for a type. Read more
sourceimpl From<UpstreamChunkAck> for Message
impl From<UpstreamChunkAck> for Message
sourcefn from(m: UpstreamChunkAck) -> Self
fn from(m: UpstreamChunkAck) -> Self
Converts to this type from the input type.
sourceimpl From<UpstreamChunkAck> for UpstreamChunkAck
impl From<UpstreamChunkAck> for UpstreamChunkAck
sourcefn from(ack: UpstreamChunkAck) -> Self
fn from(ack: UpstreamChunkAck) -> Self
Converts to this type from the input type.
sourceimpl From<UpstreamChunkAck> for UpstreamChunkAck
impl From<UpstreamChunkAck> for UpstreamChunkAck
sourcefn from(ack: UpstreamChunkAck) -> Self
fn from(ack: UpstreamChunkAck) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<UpstreamChunkAck> for UpstreamChunkAck
impl PartialEq<UpstreamChunkAck> for UpstreamChunkAck
sourcefn eq(&self, other: &UpstreamChunkAck) -> bool
fn eq(&self, other: &UpstreamChunkAck) -> bool
sourceimpl TryFrom<Message> for UpstreamChunkAck
impl TryFrom<Message> for UpstreamChunkAck
impl StructuralPartialEq for UpstreamChunkAck
Auto Trait Implementations
impl RefUnwindSafe for UpstreamChunkAck
impl Send for UpstreamChunkAck
impl Sync for UpstreamChunkAck
impl Unpin for UpstreamChunkAck
impl UnwindSafe for UpstreamChunkAck
Blanket Implementations
impl<T> Any for Twhere
T: Any + ?Sized,
impl<T> Any for Twhere
T: Any + ?Sized,
fn type_id_compat(&self) -> TypeId
fn type_id_compat(&self) -> TypeId
TODO: once 1.33.0 is the minimum supported compiler version, remove
Any::type_id_compat and use StdAny::type_id instead.
https://github.com/rust-lang/rust/issues/27745 Read more
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more