Struct iscp::message::UpstreamOpenResponse
source · pub struct UpstreamOpenResponse {
pub request_id: RequestId,
pub assigned_stream_id: Uuid,
pub assigned_stream_id_alias: u32,
pub server_time: DateTime<Utc>,
pub result_code: ResultCode,
pub result_string: String,
pub data_id_aliases: DataIdAliasMap,
}Expand description
アップストリーム開始要求の応答です。
Fields
request_id: RequestIdリクエストID
assigned_stream_id: Uuid割り当てられたストリームID
assigned_stream_id_alias: u32割り当てられたストリームIDエイリアス
server_time: DateTime<Utc>サーバー時刻
result_code: ResultCode結果コード
result_string: String結果文字列
data_id_aliases: DataIdAliasMapDataIDエイリアス
Trait Implementations
sourceimpl Clone for UpstreamOpenResponse
impl Clone for UpstreamOpenResponse
sourcefn clone(&self) -> UpstreamOpenResponse
fn clone(&self) -> UpstreamOpenResponse
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 UpstreamOpenResponse
impl Debug for UpstreamOpenResponse
sourceimpl Default for UpstreamOpenResponse
impl Default for UpstreamOpenResponse
sourceimpl From<UpstreamOpenResponse> for Error
impl From<UpstreamOpenResponse> for Error
sourcefn from(m: UpstreamOpenResponse) -> Error
fn from(m: UpstreamOpenResponse) -> Error
Converts to this type from the input type.
sourceimpl From<UpstreamOpenResponse> for Message
impl From<UpstreamOpenResponse> for Message
sourcefn from(m: UpstreamOpenResponse) -> Self
fn from(m: UpstreamOpenResponse) -> Self
Converts to this type from the input type.
sourceimpl From<UpstreamOpenResponse> for UpstreamOpenResponse
impl From<UpstreamOpenResponse> for UpstreamOpenResponse
sourcefn from(r: UpstreamOpenResponse) -> Self
fn from(r: UpstreamOpenResponse) -> Self
Converts to this type from the input type.
sourceimpl From<UpstreamOpenResponse> for UpstreamOpenResponse
impl From<UpstreamOpenResponse> for UpstreamOpenResponse
sourcefn from(r: UpstreamOpenResponse) -> Self
fn from(r: UpstreamOpenResponse) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<UpstreamOpenResponse> for UpstreamOpenResponse
impl PartialEq<UpstreamOpenResponse> for UpstreamOpenResponse
sourcefn eq(&self, other: &UpstreamOpenResponse) -> bool
fn eq(&self, other: &UpstreamOpenResponse) -> bool
sourceimpl TryFrom<Message> for UpstreamOpenResponse
impl TryFrom<Message> for UpstreamOpenResponse
impl StructuralPartialEq for UpstreamOpenResponse
Auto Trait Implementations
impl RefUnwindSafe for UpstreamOpenResponse
impl Send for UpstreamOpenResponse
impl Sync for UpstreamOpenResponse
impl Unpin for UpstreamOpenResponse
impl UnwindSafe for UpstreamOpenResponse
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