Struct iscp::message::UpstreamCloseResponse
source · pub struct UpstreamCloseResponse {
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 UpstreamCloseResponse
impl Clone for UpstreamCloseResponse
sourcefn clone(&self) -> UpstreamCloseResponse
fn clone(&self) -> UpstreamCloseResponse
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 UpstreamCloseResponse
impl Debug for UpstreamCloseResponse
sourceimpl Default for UpstreamCloseResponse
impl Default for UpstreamCloseResponse
sourcefn default() -> UpstreamCloseResponse
fn default() -> UpstreamCloseResponse
Returns the “default value” for a type. Read more
sourceimpl From<UpstreamCloseResponse> for Error
impl From<UpstreamCloseResponse> for Error
sourcefn from(m: UpstreamCloseResponse) -> Error
fn from(m: UpstreamCloseResponse) -> Error
Converts to this type from the input type.
sourceimpl From<UpstreamCloseResponse> for Message
impl From<UpstreamCloseResponse> for Message
sourcefn from(m: UpstreamCloseResponse) -> Self
fn from(m: UpstreamCloseResponse) -> Self
Converts to this type from the input type.
sourceimpl From<UpstreamCloseResponse> for UpstreamCloseResponse
impl From<UpstreamCloseResponse> for UpstreamCloseResponse
sourcefn from(r: UpstreamCloseResponse) -> Self
fn from(r: UpstreamCloseResponse) -> Self
Converts to this type from the input type.
sourceimpl From<UpstreamCloseResponse> for UpstreamCloseResponse
impl From<UpstreamCloseResponse> for UpstreamCloseResponse
sourcefn from(r: UpstreamCloseResponse) -> Self
fn from(r: UpstreamCloseResponse) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<UpstreamCloseResponse> for UpstreamCloseResponse
impl PartialEq<UpstreamCloseResponse> for UpstreamCloseResponse
sourcefn eq(&self, other: &UpstreamCloseResponse) -> bool
fn eq(&self, other: &UpstreamCloseResponse) -> bool
sourceimpl TryFrom<Message> for UpstreamCloseResponse
impl TryFrom<Message> for UpstreamCloseResponse
impl StructuralPartialEq for UpstreamCloseResponse
Auto Trait Implementations
impl RefUnwindSafe for UpstreamCloseResponse
impl Send for UpstreamCloseResponse
impl Sync for UpstreamCloseResponse
impl Unpin for UpstreamCloseResponse
impl UnwindSafe for UpstreamCloseResponse
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