pub struct ParsedInvokeLog {
pub raw: String,
pub program_id: Pubkey,
pub depth: u8,
}Expand description
Program <id> invoke [n]
Fields§
§raw: String§program_id: Pubkey§depth: u8Implementations§
Source§impl ParsedInvokeLog
impl ParsedInvokeLog
pub fn from_raw(log: &RawInvokeLog<'_>) -> Result<Self>
Trait Implementations§
Source§impl Clone for ParsedInvokeLog
impl Clone for ParsedInvokeLog
Source§fn clone(&self) -> ParsedInvokeLog
fn clone(&self) -> ParsedInvokeLog
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 ParsedInvokeLog
impl Debug for ParsedInvokeLog
Source§impl From<ParsedInvokeLog> for ParsedLog
impl From<ParsedInvokeLog> for ParsedLog
Source§fn from(value: ParsedInvokeLog) -> Self
fn from(value: ParsedInvokeLog) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ParsedInvokeLog
impl PartialEq for ParsedInvokeLog
impl Eq for ParsedInvokeLog
impl StructuralPartialEq for ParsedInvokeLog
Auto Trait Implementations§
impl Freeze for ParsedInvokeLog
impl RefUnwindSafe for ParsedInvokeLog
impl Send for ParsedInvokeLog
impl Sync for ParsedInvokeLog
impl Unpin for ParsedInvokeLog
impl UnwindSafe for ParsedInvokeLog
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