Struct iscp::message::DownstreamMetadata
source · pub struct DownstreamMetadata {
pub request_id: RequestId,
pub stream_id_alias: u32,
pub source_node_id: String,
pub metadata: ReceivableMetadata,
}Expand description
ダウンストリームメタデータです。
メタデータを格納してブローカーからノードへ転送するためのメッセージです。
Fields§
§request_id: RequestIdリクエストID
stream_id_alias: u32ストリームIDエイリアス
source_node_id: String生成元ノードID
metadata: ReceivableMetadataメタデータ
Trait Implementations§
source§impl Clone for DownstreamMetadata
impl Clone for DownstreamMetadata
source§fn clone(&self) -> DownstreamMetadata
fn clone(&self) -> DownstreamMetadata
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for DownstreamMetadata
impl Debug for DownstreamMetadata
source§impl Default for DownstreamMetadata
impl Default for DownstreamMetadata
source§impl From<DownstreamMetadata> for DownstreamMetadata
impl From<DownstreamMetadata> for DownstreamMetadata
source§fn from(m: DownstreamMetadata) -> Self
fn from(m: DownstreamMetadata) -> Self
Converts to this type from the input type.
source§impl From<DownstreamMetadata> for Message
impl From<DownstreamMetadata> for Message
source§fn from(m: DownstreamMetadata) -> Self
fn from(m: DownstreamMetadata) -> Self
Converts to this type from the input type.
source§impl PartialEq for DownstreamMetadata
impl PartialEq for DownstreamMetadata
source§fn eq(&self, other: &DownstreamMetadata) -> bool
fn eq(&self, other: &DownstreamMetadata) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl TryFrom<Message> for DownstreamMetadata
impl TryFrom<Message> for DownstreamMetadata
impl StructuralPartialEq for DownstreamMetadata
Auto Trait Implementations§
impl RefUnwindSafe for DownstreamMetadata
impl Send for DownstreamMetadata
impl Sync for DownstreamMetadata
impl Unpin for DownstreamMetadata
impl UnwindSafe for DownstreamMetadata
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more