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