Struct poseidon_client::RpcCompiledInstruction
source · [−]pub struct RpcCompiledInstruction {
pub program_id_index: u8,
pub accounts: Vec<u8>,
pub data: String,
}
Fields
program_id_index: u8
accounts: Vec<u8>
data: String
Trait Implementations
sourceimpl BorshDeserialize for RpcCompiledInstruction where
u8: BorshDeserialize,
Vec<u8>: BorshDeserialize,
String: BorshDeserialize,
impl BorshDeserialize for RpcCompiledInstruction where
u8: BorshDeserialize,
Vec<u8>: BorshDeserialize,
String: BorshDeserialize,
sourceimpl BorshSerialize for RpcCompiledInstruction where
u8: BorshSerialize,
Vec<u8>: BorshSerialize,
String: BorshSerialize,
impl BorshSerialize for RpcCompiledInstruction where
u8: BorshSerialize,
Vec<u8>: BorshSerialize,
String: BorshSerialize,
sourceimpl Clone for RpcCompiledInstruction
impl Clone for RpcCompiledInstruction
sourcefn clone(&self) -> RpcCompiledInstruction
fn clone(&self) -> RpcCompiledInstruction
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 RpcCompiledInstruction
impl Debug for RpcCompiledInstruction
sourceimpl<'de> Deserialize<'de> for RpcCompiledInstruction
impl<'de> Deserialize<'de> for RpcCompiledInstruction
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<RpcCompiledInstruction> for RpcCompiledInstruction
impl PartialEq<RpcCompiledInstruction> for RpcCompiledInstruction
sourcefn eq(&self, other: &RpcCompiledInstruction) -> bool
fn eq(&self, other: &RpcCompiledInstruction) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &RpcCompiledInstruction) -> bool
fn ne(&self, other: &RpcCompiledInstruction) -> bool
This method tests for !=
.
sourceimpl PartialOrd<RpcCompiledInstruction> for RpcCompiledInstruction
impl PartialOrd<RpcCompiledInstruction> for RpcCompiledInstruction
sourcefn partial_cmp(&self, other: &RpcCompiledInstruction) -> Option<Ordering>
fn partial_cmp(&self, other: &RpcCompiledInstruction) -> 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 RpcCompiledInstruction
impl Serialize for RpcCompiledInstruction
impl StructuralPartialEq for RpcCompiledInstruction
Auto Trait Implementations
impl RefUnwindSafe for RpcCompiledInstruction
impl Send for RpcCompiledInstruction
impl Sync for RpcCompiledInstruction
impl Unpin for RpcCompiledInstruction
impl UnwindSafe for RpcCompiledInstruction
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