Struct iscp::message::UpstreamNormalClose
source · pub struct UpstreamNormalClose {
pub stream_id: Uuid,
pub session_id: Uuid,
pub total_data_points: u64,
pub final_sequence_number: u32,
}Expand description
あるアップストリームが正常切断したことを知らせるメタデータです。
Fields
stream_id: UuidストリームID
session_id: UuidセッションID
total_data_points: u64総データポイント数
final_sequence_number: u32最終シーケンス番号
Trait Implementations
sourceimpl Clone for UpstreamNormalClose
impl Clone for UpstreamNormalClose
sourcefn clone(&self) -> UpstreamNormalClose
fn clone(&self) -> UpstreamNormalClose
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 UpstreamNormalClose
impl Debug for UpstreamNormalClose
sourceimpl Default for UpstreamNormalClose
impl Default for UpstreamNormalClose
sourcefn default() -> UpstreamNormalClose
fn default() -> UpstreamNormalClose
Returns the “default value” for a type. Read more
sourceimpl From<UpstreamNormalClose> for UpstreamNormalClose
impl From<UpstreamNormalClose> for UpstreamNormalClose
sourcefn from(c: UpstreamNormalClose) -> Self
fn from(c: UpstreamNormalClose) -> Self
Converts to this type from the input type.
sourceimpl From<UpstreamNormalClose> for UpstreamNormalClose
impl From<UpstreamNormalClose> for UpstreamNormalClose
sourcefn from(c: UpstreamNormalClose) -> Self
fn from(c: UpstreamNormalClose) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<UpstreamNormalClose> for UpstreamNormalClose
impl PartialEq<UpstreamNormalClose> for UpstreamNormalClose
sourcefn eq(&self, other: &UpstreamNormalClose) -> bool
fn eq(&self, other: &UpstreamNormalClose) -> bool
impl StructuralPartialEq for UpstreamNormalClose
Auto Trait Implementations
impl RefUnwindSafe for UpstreamNormalClose
impl Send for UpstreamNormalClose
impl Sync for UpstreamNormalClose
impl Unpin for UpstreamNormalClose
impl UnwindSafe for UpstreamNormalClose
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