Struct iscp::message::UpstreamCall  
source · pub struct UpstreamCall {
    pub call_id: String,
    pub request_call_id: String,
    pub destination_node_id: String,
    pub name: String,
    pub type_: String,
    pub payload: Bytes,
}Expand description
アップストリームコールです。
Fields§
§call_id: StringコールID
request_call_id: StringリクエストコールID
destination_node_id: String宛先ノードID
name: String名称
type_: String型
payload: Bytesペイロード
Trait Implementations§
source§impl Clone for UpstreamCall
 
impl Clone for UpstreamCall
source§fn clone(&self) -> UpstreamCall
 
fn clone(&self) -> UpstreamCall
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 UpstreamCall
 
impl Debug for UpstreamCall
source§impl Default for UpstreamCall
 
impl Default for UpstreamCall
source§fn default() -> UpstreamCall
 
fn default() -> UpstreamCall
Returns the “default value” for a type. Read more
source§impl From<UpstreamCall> for Message
 
impl From<UpstreamCall> for Message
source§fn from(m: UpstreamCall) -> Self
 
fn from(m: UpstreamCall) -> Self
Converts to this type from the input type.
source§impl From<UpstreamCall> for UpstreamCall
 
impl From<UpstreamCall> for UpstreamCall
source§fn from(c: UpstreamCall) -> Self
 
fn from(c: UpstreamCall) -> Self
Converts to this type from the input type.
source§impl From<UpstreamCall> for UpstreamCall
 
impl From<UpstreamCall> for UpstreamCall
source§fn from(c: UpstreamCall) -> Self
 
fn from(c: UpstreamCall) -> Self
Converts to this type from the input type.
source§impl PartialEq for UpstreamCall
 
impl PartialEq for UpstreamCall
source§fn eq(&self, other: &UpstreamCall) -> bool
 
fn eq(&self, other: &UpstreamCall) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl TryFrom<Message> for UpstreamCall
 
impl TryFrom<Message> for UpstreamCall
impl StructuralPartialEq for UpstreamCall
Auto Trait Implementations§
impl RefUnwindSafe for UpstreamCall
impl Send for UpstreamCall
impl Sync for UpstreamCall
impl Unpin for UpstreamCall
impl UnwindSafe for UpstreamCall
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