Struct iscp::message::UpstreamChunkResult
source · pub struct UpstreamChunkResult {
pub sequence_number: u32,
pub result_code: ResultCode,
pub result_string: String,
}Expand description
ストリームチャンク(上り用)で送信されたデータポイントの処理結果です。
Fields
sequence_number: u32シーケンス番号
result_code: ResultCode結果コード
result_string: String結果文字列
Trait Implementations
sourceimpl Clone for UpstreamChunkResult
impl Clone for UpstreamChunkResult
sourcefn clone(&self) -> UpstreamChunkResult
fn clone(&self) -> UpstreamChunkResult
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 UpstreamChunkResult
impl Debug for UpstreamChunkResult
sourceimpl Default for UpstreamChunkResult
impl Default for UpstreamChunkResult
sourcefn default() -> UpstreamChunkResult
fn default() -> UpstreamChunkResult
Returns the “default value” for a type. Read more
sourceimpl From<UpstreamChunkResult> for Error
impl From<UpstreamChunkResult> for Error
sourcefn from(m: UpstreamChunkResult) -> Error
fn from(m: UpstreamChunkResult) -> Error
Converts to this type from the input type.
sourceimpl From<UpstreamChunkResult> for UpstreamChunkResult
impl From<UpstreamChunkResult> for UpstreamChunkResult
sourcefn from(r: UpstreamChunkResult) -> Self
fn from(r: UpstreamChunkResult) -> Self
Converts to this type from the input type.
sourceimpl From<UpstreamChunkResult> for UpstreamChunkResult
impl From<UpstreamChunkResult> for UpstreamChunkResult
sourcefn from(r: UpstreamChunkResult) -> Self
fn from(r: UpstreamChunkResult) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<UpstreamChunkResult> for UpstreamChunkResult
impl PartialEq<UpstreamChunkResult> for UpstreamChunkResult
sourcefn eq(&self, other: &UpstreamChunkResult) -> bool
fn eq(&self, other: &UpstreamChunkResult) -> bool
impl StructuralPartialEq for UpstreamChunkResult
Auto Trait Implementations
impl RefUnwindSafe for UpstreamChunkResult
impl Send for UpstreamChunkResult
impl Sync for UpstreamChunkResult
impl Unpin for UpstreamChunkResult
impl UnwindSafe for UpstreamChunkResult
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