Struct iscp::message::Disconnect
source · pub struct Disconnect {
pub result_code: ResultCode,
pub result_string: String,
}Expand description
接続の切断です。
Fields
result_code: ResultCode結果コード
result_string: String結果文字列
Trait Implementations
sourceimpl Clone for Disconnect
impl Clone for Disconnect
sourcefn clone(&self) -> Disconnect
fn clone(&self) -> Disconnect
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 Disconnect
impl Debug for Disconnect
sourceimpl Default for Disconnect
impl Default for Disconnect
sourcefn default() -> Disconnect
fn default() -> Disconnect
Returns the “default value” for a type. Read more
sourceimpl From<Disconnect> for Disconnect
impl From<Disconnect> for Disconnect
sourcefn from(r: Disconnect) -> Self
fn from(r: Disconnect) -> Self
Converts to this type from the input type.
sourceimpl From<Disconnect> for Disconnect
impl From<Disconnect> for Disconnect
sourcefn from(r: Disconnect) -> Self
fn from(r: Disconnect) -> Self
Converts to this type from the input type.
sourceimpl From<Disconnect> for Error
impl From<Disconnect> for Error
sourcefn from(m: Disconnect) -> Error
fn from(m: Disconnect) -> Error
Converts to this type from the input type.
sourceimpl From<Disconnect> for Message
impl From<Disconnect> for Message
sourcefn from(m: Disconnect) -> Self
fn from(m: Disconnect) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<Disconnect> for Disconnect
impl PartialEq<Disconnect> for Disconnect
sourcefn eq(&self, other: &Disconnect) -> bool
fn eq(&self, other: &Disconnect) -> bool
sourceimpl TryFrom<Message> for Disconnect
impl TryFrom<Message> for Disconnect
impl StructuralPartialEq for Disconnect
Auto Trait Implementations
impl RefUnwindSafe for Disconnect
impl Send for Disconnect
impl Sync for Disconnect
impl Unpin for Disconnect
impl UnwindSafe for Disconnect
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