Struct iscp::message::DownstreamChunkAck
source · pub struct DownstreamChunkAck {
pub ack_id: u32,
pub stream_id_alias: u32,
pub upstream_aliases: HashMap<u32, UpstreamInfo>,
pub data_id_aliases: DataIdAliasMap,
pub results: Vec<DownstreamChunkResult>,
}Expand description
ストリームチャンク(下り用)に対する確認応答です。
Fields
ack_id: u32ACK ID
stream_id_alias: u32ストリームIDエイリアス
upstream_aliases: HashMap<u32, UpstreamInfo>アップストリームエイリアス
data_id_aliases: DataIdAliasMapデータIDエイリアス
results: Vec<DownstreamChunkResult>処理結果
Trait Implementations
sourceimpl Clone for DownstreamChunkAck
impl Clone for DownstreamChunkAck
sourcefn clone(&self) -> DownstreamChunkAck
fn clone(&self) -> DownstreamChunkAck
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 DownstreamChunkAck
impl Debug for DownstreamChunkAck
sourceimpl Default for DownstreamChunkAck
impl Default for DownstreamChunkAck
sourcefn default() -> DownstreamChunkAck
fn default() -> DownstreamChunkAck
Returns the “default value” for a type. Read more
sourceimpl From<DownstreamChunkAck> for DownstreamChunkAck
impl From<DownstreamChunkAck> for DownstreamChunkAck
sourcefn from(ack: DownstreamChunkAck) -> Self
fn from(ack: DownstreamChunkAck) -> Self
Converts to this type from the input type.
sourceimpl From<DownstreamChunkAck> for DownstreamChunkAck
impl From<DownstreamChunkAck> for DownstreamChunkAck
sourcefn from(ack: DownstreamChunkAck) -> Self
fn from(ack: DownstreamChunkAck) -> Self
Converts to this type from the input type.
sourceimpl From<DownstreamChunkAck> for Message
impl From<DownstreamChunkAck> for Message
sourcefn from(m: DownstreamChunkAck) -> Self
fn from(m: DownstreamChunkAck) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<DownstreamChunkAck> for DownstreamChunkAck
impl PartialEq<DownstreamChunkAck> for DownstreamChunkAck
sourcefn eq(&self, other: &DownstreamChunkAck) -> bool
fn eq(&self, other: &DownstreamChunkAck) -> bool
sourceimpl TryFrom<Message> for DownstreamChunkAck
impl TryFrom<Message> for DownstreamChunkAck
impl StructuralPartialEq for DownstreamChunkAck
Auto Trait Implementations
impl RefUnwindSafe for DownstreamChunkAck
impl Send for DownstreamChunkAck
impl Sync for DownstreamChunkAck
impl Unpin for DownstreamChunkAck
impl UnwindSafe for DownstreamChunkAck
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