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