pub struct ParsedCuLog {
pub raw: String,
pub program_id: Pubkey,
pub consumed: u64,
pub budget: u64,
}Expand description
Program <id> consumed <x> of <y> compute units
Fields§
§raw: String§program_id: Pubkey§consumed: u64§budget: u64Implementations§
Trait Implementations§
Source§impl Clone for ParsedCuLog
impl Clone for ParsedCuLog
Source§fn clone(&self) -> ParsedCuLog
fn clone(&self) -> ParsedCuLog
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 ParsedCuLog
impl Debug for ParsedCuLog
Source§impl From<ParsedCuLog> for ComputeUnits
impl From<ParsedCuLog> for ComputeUnits
Source§fn from(value: ParsedCuLog) -> Self
fn from(value: ParsedCuLog) -> Self
Converts to this type from the input type.
Source§impl From<ParsedCuLog> for ParsedLog
impl From<ParsedCuLog> for ParsedLog
Source§fn from(value: ParsedCuLog) -> Self
fn from(value: ParsedCuLog) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ParsedCuLog
impl PartialEq for ParsedCuLog
impl Eq for ParsedCuLog
impl StructuralPartialEq for ParsedCuLog
Auto Trait Implementations§
impl Freeze for ParsedCuLog
impl RefUnwindSafe for ParsedCuLog
impl Send for ParsedCuLog
impl Sync for ParsedCuLog
impl Unpin for ParsedCuLog
impl UnwindSafe for ParsedCuLog
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