Struct iscp::message::DownstreamCall
source · pub struct DownstreamCall {
pub call_id: String,
pub request_call_id: String,
pub source_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
source_node_id: String送信元ノードID
name: String名称
f_type: String型
payload: Vec<u8>ペイロード
Implementations
sourceimpl DownstreamCall
impl DownstreamCall
Trait Implementations
sourceimpl Clone for DownstreamCall
impl Clone for DownstreamCall
sourcefn clone(&self) -> DownstreamCall
fn clone(&self) -> DownstreamCall
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 DownstreamCall
impl Debug for DownstreamCall
sourceimpl Default for DownstreamCall
impl Default for DownstreamCall
sourcefn default() -> DownstreamCall
fn default() -> DownstreamCall
Returns the “default value” for a type. Read more
sourceimpl From<DownstreamCall> for DownstreamCall
impl From<DownstreamCall> for DownstreamCall
sourcefn from(c: DownstreamCall) -> Self
fn from(c: DownstreamCall) -> Self
Converts to this type from the input type.
sourceimpl From<DownstreamCall> for DownstreamCall
impl From<DownstreamCall> for DownstreamCall
sourcefn from(c: DownstreamCall) -> Self
fn from(c: DownstreamCall) -> Self
Converts to this type from the input type.
sourceimpl From<DownstreamCall> for DownstreamCall
impl From<DownstreamCall> for DownstreamCall
sourcefn from(c: DownstreamCall) -> Self
fn from(c: DownstreamCall) -> Self
Converts to this type from the input type.
sourceimpl From<DownstreamCall> for DownstreamReplyCall
impl From<DownstreamCall> for DownstreamReplyCall
sourcefn from(c: DownstreamCall) -> Self
fn from(c: DownstreamCall) -> Self
Converts to this type from the input type.
sourceimpl From<DownstreamCall> for Message
impl From<DownstreamCall> for Message
sourcefn from(m: DownstreamCall) -> Self
fn from(m: DownstreamCall) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<DownstreamCall> for DownstreamCall
impl PartialEq<DownstreamCall> for DownstreamCall
sourcefn eq(&self, other: &DownstreamCall) -> bool
fn eq(&self, other: &DownstreamCall) -> bool
sourceimpl TryFrom<Message> for DownstreamCall
impl TryFrom<Message> for DownstreamCall
impl StructuralPartialEq for DownstreamCall
Auto Trait Implementations
impl RefUnwindSafe for DownstreamCall
impl Send for DownstreamCall
impl Sync for DownstreamCall
impl Unpin for DownstreamCall
impl UnwindSafe for DownstreamCall
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