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