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