Struct iscp::message::DownstreamChunk
source · pub struct DownstreamChunk {
pub stream_id_alias: u32,
pub stream_chunk: StreamChunk,
pub upstream_or_alias: UpstreamOrAlias,
}Expand description
ストリームチャンク(下り用)です。
Fields
stream_id_alias: u32ストリームIDエイリアス
stream_chunk: StreamChunkストリームチャンク
upstream_or_alias: UpstreamOrAliasアップストリーム情報、またはアップストリームエイリアス
Trait Implementations
sourceimpl Clone for DownstreamChunk
impl Clone for DownstreamChunk
sourcefn clone(&self) -> DownstreamChunk
fn clone(&self) -> DownstreamChunk
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 DownstreamChunk
impl Debug for DownstreamChunk
sourceimpl Default for DownstreamChunk
impl Default for DownstreamChunk
sourcefn default() -> DownstreamChunk
fn default() -> DownstreamChunk
Returns the “default value” for a type. Read more
sourceimpl From<DownstreamChunk> for DownstreamChunk
impl From<DownstreamChunk> for DownstreamChunk
sourcefn from(c: DownstreamChunk) -> Self
fn from(c: DownstreamChunk) -> Self
Converts to this type from the input type.
sourceimpl From<DownstreamChunk> for Message
impl From<DownstreamChunk> for Message
sourcefn from(m: DownstreamChunk) -> Self
fn from(m: DownstreamChunk) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<DownstreamChunk> for DownstreamChunk
impl PartialEq<DownstreamChunk> for DownstreamChunk
sourcefn eq(&self, other: &DownstreamChunk) -> bool
fn eq(&self, other: &DownstreamChunk) -> bool
sourceimpl TryFrom<DownstreamChunk> for DownstreamChunk
impl TryFrom<DownstreamChunk> for DownstreamChunk
sourceimpl TryFrom<Message> for DownstreamChunk
impl TryFrom<Message> for DownstreamChunk
impl StructuralPartialEq for DownstreamChunk
Auto Trait Implementations
impl RefUnwindSafe for DownstreamChunk
impl Send for DownstreamChunk
impl Sync for DownstreamChunk
impl Unpin for DownstreamChunk
impl UnwindSafe for DownstreamChunk
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