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§
source§impl Clone for UpstreamCallAck
 
impl Clone for UpstreamCallAck
source§fn clone(&self) -> UpstreamCallAck
 
fn clone(&self) -> UpstreamCallAck
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for UpstreamCallAck
 
impl Debug for UpstreamCallAck
source§impl Default for UpstreamCallAck
 
impl Default for UpstreamCallAck
source§fn default() -> UpstreamCallAck
 
fn default() -> UpstreamCallAck
Returns the “default value” for a type. Read more
source§impl From<UpstreamCallAck> for Message
 
impl From<UpstreamCallAck> for Message
source§fn from(m: UpstreamCallAck) -> Self
 
fn from(m: UpstreamCallAck) -> Self
Converts to this type from the input type.
source§impl From<UpstreamCallAck> for UpstreamCallAck
 
impl From<UpstreamCallAck> for UpstreamCallAck
source§fn from(a: UpstreamCallAck) -> Self
 
fn from(a: UpstreamCallAck) -> Self
Converts to this type from the input type.
source§impl From<UpstreamCallAck> for UpstreamCallAck
 
impl From<UpstreamCallAck> for UpstreamCallAck
source§fn from(a: UpstreamCallAck) -> Self
 
fn from(a: UpstreamCallAck) -> Self
Converts to this type from the input type.
source§impl PartialEq for UpstreamCallAck
 
impl PartialEq for UpstreamCallAck
source§fn eq(&self, other: &UpstreamCallAck) -> bool
 
fn eq(&self, other: &UpstreamCallAck) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl 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§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more