Struct iscp::message::DownstreamOpenRequest
source · pub struct DownstreamOpenRequest {
pub request_id: RequestId,
pub desired_stream_id_alias: u32,
pub downstream_filters: Vec<DownstreamFilter>,
pub expiry_interval: Duration,
pub data_id_aliases: DataIdAliasMap,
pub qos: QoS,
}Expand description
ダウンストリーム開始要求です。
ダウンストリーム開始要求を受信したブローカーは、ブローカーからノード方向のデータ送信ストリームを開始します。
Fields
request_id: RequestIdリクエストID
desired_stream_id_alias: u32割り当てを希望するストリームIDエイリアス
downstream_filters: Vec<DownstreamFilter>ダウンストリームフィルタ
expiry_interval: Duration有効期限
data_id_aliases: DataIdAliasMapデータIDエイリアス
qos: QoSQoS
Trait Implementations
sourceimpl Clone for DownstreamOpenRequest
impl Clone for DownstreamOpenRequest
sourcefn clone(&self) -> DownstreamOpenRequest
fn clone(&self) -> DownstreamOpenRequest
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 DownstreamOpenRequest
impl Debug for DownstreamOpenRequest
sourceimpl Default for DownstreamOpenRequest
impl Default for DownstreamOpenRequest
sourceimpl From<DownstreamConfig> for DownstreamOpenRequest
impl From<DownstreamConfig> for DownstreamOpenRequest
sourcefn from(c: DownstreamConfig) -> Self
fn from(c: DownstreamConfig) -> Self
Converts to this type from the input type.
sourceimpl From<DownstreamOpenRequest> for DownstreamOpenRequest
impl From<DownstreamOpenRequest> for DownstreamOpenRequest
sourcefn from(req: DownstreamOpenRequest) -> Self
fn from(req: DownstreamOpenRequest) -> Self
Converts to this type from the input type.
sourceimpl From<DownstreamOpenRequest> for DownstreamOpenRequest
impl From<DownstreamOpenRequest> for DownstreamOpenRequest
sourcefn from(req: DownstreamOpenRequest) -> Self
fn from(req: DownstreamOpenRequest) -> Self
Converts to this type from the input type.
sourceimpl From<DownstreamOpenRequest> for Message
impl From<DownstreamOpenRequest> for Message
sourcefn from(m: DownstreamOpenRequest) -> Self
fn from(m: DownstreamOpenRequest) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<DownstreamOpenRequest> for DownstreamOpenRequest
impl PartialEq<DownstreamOpenRequest> for DownstreamOpenRequest
sourcefn eq(&self, other: &DownstreamOpenRequest) -> bool
fn eq(&self, other: &DownstreamOpenRequest) -> bool
sourceimpl TryFrom<Message> for DownstreamOpenRequest
impl TryFrom<Message> for DownstreamOpenRequest
impl StructuralPartialEq for DownstreamOpenRequest
Auto Trait Implementations
impl RefUnwindSafe for DownstreamOpenRequest
impl Send for DownstreamOpenRequest
impl Sync for DownstreamOpenRequest
impl Unpin for DownstreamOpenRequest
impl UnwindSafe for DownstreamOpenRequest
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