Struct iscp::message::StreamChunk
source · pub struct StreamChunk {
pub sequence_number: u32,
pub data_point_groups: Vec<DataPointGroup>,
}Expand description
ストリームを時間で区切ったデータポイントのまとまりです。
Fields
sequence_number: u32data_point_groups: Vec<DataPointGroup>Trait Implementations
sourceimpl Clone for StreamChunk
impl Clone for StreamChunk
sourcefn clone(&self) -> StreamChunk
fn clone(&self) -> StreamChunk
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 StreamChunk
impl Debug for StreamChunk
sourceimpl Default for StreamChunk
impl Default for StreamChunk
sourcefn default() -> StreamChunk
fn default() -> StreamChunk
Returns the “default value” for a type. Read more
sourceimpl From<StreamChunk> for StreamChunk
impl From<StreamChunk> for StreamChunk
sourcefn from(c: StreamChunk) -> Self
fn from(c: StreamChunk) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<StreamChunk> for StreamChunk
impl PartialEq<StreamChunk> for StreamChunk
sourcefn eq(&self, other: &StreamChunk) -> bool
fn eq(&self, other: &StreamChunk) -> bool
sourceimpl TryFrom<StreamChunk> for StreamChunk
impl TryFrom<StreamChunk> for StreamChunk
impl StructuralPartialEq for StreamChunk
Auto Trait Implementations
impl RefUnwindSafe for StreamChunk
impl Send for StreamChunk
impl Sync for StreamChunk
impl Unpin for StreamChunk
impl UnwindSafe for StreamChunk
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