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