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