Struct poseidon_client::RpcMessage
source · [−]pub struct RpcMessage {
pub header: MessageHeader,
pub account_keys: Vec<Base58PublicKey>,
pub recent_blockhash: Base58BlockHash,
pub instructions: Vec<RpcCompiledInstruction>,
}
Fields
header: MessageHeader
account_keys: Vec<Base58PublicKey>
recent_blockhash: Base58BlockHash
instructions: Vec<RpcCompiledInstruction>
Trait Implementations
sourceimpl BorshDeserialize for RpcMessage where
MessageHeader: BorshDeserialize,
Vec<Base58PublicKey>: BorshDeserialize,
Base58BlockHash: BorshDeserialize,
Vec<RpcCompiledInstruction>: BorshDeserialize,
impl BorshDeserialize for RpcMessage where
MessageHeader: BorshDeserialize,
Vec<Base58PublicKey>: BorshDeserialize,
Base58BlockHash: BorshDeserialize,
Vec<RpcCompiledInstruction>: BorshDeserialize,
sourceimpl BorshSerialize for RpcMessage where
MessageHeader: BorshSerialize,
Vec<Base58PublicKey>: BorshSerialize,
Base58BlockHash: BorshSerialize,
Vec<RpcCompiledInstruction>: BorshSerialize,
impl BorshSerialize for RpcMessage where
MessageHeader: BorshSerialize,
Vec<Base58PublicKey>: BorshSerialize,
Base58BlockHash: BorshSerialize,
Vec<RpcCompiledInstruction>: BorshSerialize,
sourceimpl Clone for RpcMessage
impl Clone for RpcMessage
sourcefn clone(&self) -> RpcMessage
fn clone(&self) -> RpcMessage
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 more
sourceimpl Debug for RpcMessage
impl Debug for RpcMessage
sourceimpl<'de> Deserialize<'de> for RpcMessage
impl<'de> Deserialize<'de> for RpcMessage
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<RpcMessage> for RpcMessage
impl PartialEq<RpcMessage> for RpcMessage
sourcefn eq(&self, other: &RpcMessage) -> bool
fn eq(&self, other: &RpcMessage) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &RpcMessage) -> bool
fn ne(&self, other: &RpcMessage) -> bool
This method tests for !=
.
sourceimpl PartialOrd<RpcMessage> for RpcMessage
impl PartialOrd<RpcMessage> for RpcMessage
sourcefn partial_cmp(&self, other: &RpcMessage) -> Option<Ordering>
fn partial_cmp(&self, other: &RpcMessage) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl Serialize for RpcMessage
impl Serialize for RpcMessage
impl StructuralPartialEq for RpcMessage
Auto Trait Implementations
impl RefUnwindSafe for RpcMessage
impl Send for RpcMessage
impl Sync for RpcMessage
impl Unpin for RpcMessage
impl UnwindSafe for RpcMessage
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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