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 f_type: String,
pub payload: Vec<u8>,
}Expand description
アップストリームコールです。
Fields
call_id: StringコールID
request_call_id: StringリクエストコールID
destination_node_id: String宛先ノードID
name: String名称
f_type: String型
payload: Vec<u8>ペイロード
Trait Implementations
sourceimpl Clone for UpstreamCall
impl Clone for UpstreamCall
sourcefn clone(&self) -> UpstreamCall
fn clone(&self) -> UpstreamCall
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 UpstreamCall
impl Debug for UpstreamCall
sourceimpl Default for UpstreamCall
impl Default for UpstreamCall
sourcefn default() -> UpstreamCall
fn default() -> UpstreamCall
Returns the “default value” for a type. Read more
sourceimpl From<UpstreamCall> for Message
impl From<UpstreamCall> for Message
sourcefn from(m: UpstreamCall) -> Self
fn from(m: UpstreamCall) -> Self
Converts to this type from the input type.
sourceimpl From<UpstreamCall> for UpstreamCall
impl From<UpstreamCall> for UpstreamCall
sourcefn from(c: UpstreamCall) -> Self
fn from(c: UpstreamCall) -> Self
Converts to this type from the input type.
sourceimpl From<UpstreamCall> for UpstreamCall
impl From<UpstreamCall> for UpstreamCall
sourcefn from(c: UpstreamCall) -> Self
fn from(c: UpstreamCall) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<UpstreamCall> for UpstreamCall
impl PartialEq<UpstreamCall> for UpstreamCall
sourcefn eq(&self, other: &UpstreamCall) -> bool
fn eq(&self, other: &UpstreamCall) -> bool
sourceimpl 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
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