pub struct RawInvokeLog<'a> {
pub raw: &'a str,
pub program_id: &'a str,
pub depth: u8,
}Expand description
A Raw Invoke Log
Program <id> invoke [n]
Fields§
§raw: &'a str§program_id: &'a str§depth: u8Trait Implementations§
Source§impl<'a> Clone for RawInvokeLog<'a>
impl<'a> Clone for RawInvokeLog<'a>
Source§fn clone(&self) -> RawInvokeLog<'a>
fn clone(&self) -> RawInvokeLog<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for RawInvokeLog<'a>
impl<'a> Debug for RawInvokeLog<'a>
impl<'a> Eq for RawInvokeLog<'a>
Source§impl<'a> PartialEq for RawInvokeLog<'a>
impl<'a> PartialEq for RawInvokeLog<'a>
Source§fn eq(&self, other: &RawInvokeLog<'a>) -> bool
fn eq(&self, other: &RawInvokeLog<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for RawInvokeLog<'a>
Auto Trait Implementations§
impl<'a> Freeze for RawInvokeLog<'a>
impl<'a> RefUnwindSafe for RawInvokeLog<'a>
impl<'a> Send for RawInvokeLog<'a>
impl<'a> Sync for RawInvokeLog<'a>
impl<'a> Unpin for RawInvokeLog<'a>
impl<'a> UnsafeUnpin for RawInvokeLog<'a>
impl<'a> UnwindSafe for RawInvokeLog<'a>
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