pub struct ParsedReturnLog {
pub raw: String,
pub program_id: Pubkey,
pub data: Vec<u8>,
}Expand description
Program return: <id> <base64>
Fields§
§raw: String§program_id: Pubkey§data: Vec<u8>Implementations§
Source§impl ParsedReturnLog
impl ParsedReturnLog
pub fn from_raw(log: &RawReturnLog<'_>) -> Result<Self>
Trait Implementations§
Source§impl Clone for ParsedReturnLog
impl Clone for ParsedReturnLog
Source§fn clone(&self) -> ParsedReturnLog
fn clone(&self) -> ParsedReturnLog
Returns a duplicate 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 ParsedReturnLog
impl Debug for ParsedReturnLog
Source§impl From<ParsedReturnLog> for ParsedLog
impl From<ParsedReturnLog> for ParsedLog
Source§fn from(value: ParsedReturnLog) -> Self
fn from(value: ParsedReturnLog) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ParsedReturnLog
impl PartialEq for ParsedReturnLog
impl Eq for ParsedReturnLog
impl StructuralPartialEq for ParsedReturnLog
Auto Trait Implementations§
impl Freeze for ParsedReturnLog
impl RefUnwindSafe for ParsedReturnLog
impl Send for ParsedReturnLog
impl Sync for ParsedReturnLog
impl Unpin for ParsedReturnLog
impl UnwindSafe for ParsedReturnLog
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