pub struct LegacySolanaFunctionResult {
pub serialized_tx: Vec<u8>,
}
Fields§
§serialized_tx: Vec<u8>
Trait Implementations§
source§impl Clone for LegacySolanaFunctionResult
impl Clone for LegacySolanaFunctionResult
source§fn clone(&self) -> LegacySolanaFunctionResult
fn clone(&self) -> LegacySolanaFunctionResult
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 LegacySolanaFunctionResult
impl Debug for LegacySolanaFunctionResult
source§impl Default for LegacySolanaFunctionResult
impl Default for LegacySolanaFunctionResult
source§fn default() -> LegacySolanaFunctionResult
fn default() -> LegacySolanaFunctionResult
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LegacySolanaFunctionResult
impl<'de> Deserialize<'de> for LegacySolanaFunctionResult
source§fn 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
source§impl From<LegacySolanaFunctionResult> for SolanaFunctionResult
impl From<LegacySolanaFunctionResult> for SolanaFunctionResult
source§fn from(item: LegacySolanaFunctionResult) -> SolanaFunctionResult
fn from(item: LegacySolanaFunctionResult) -> SolanaFunctionResult
Converts to this type from the input type.
source§impl PartialEq for LegacySolanaFunctionResult
impl PartialEq for LegacySolanaFunctionResult
source§fn eq(&self, other: &LegacySolanaFunctionResult) -> bool
fn eq(&self, other: &LegacySolanaFunctionResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LegacySolanaFunctionResult
Auto Trait Implementations§
impl RefUnwindSafe for LegacySolanaFunctionResult
impl Send for LegacySolanaFunctionResult
impl Sync for LegacySolanaFunctionResult
impl Unpin for LegacySolanaFunctionResult
impl UnwindSafe for LegacySolanaFunctionResult
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