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