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