pub struct RawCuLog<'a> {
pub raw: &'a str,
pub program_id: &'a str,
pub consumed: u64,
pub budget: u64,
}Expand description
A Raw Cu Log
Program <id> consumed <x> of <y> compute units
Fields§
§raw: &'a str§program_id: &'a str§consumed: u64§budget: u64Trait Implementations§
impl<'a> Eq for RawCuLog<'a>
Source§impl From<RawCuLog<'_>> for ComputeUnits
impl From<RawCuLog<'_>> for ComputeUnits
impl<'a> StructuralPartialEq for RawCuLog<'a>
Auto Trait Implementations§
impl<'a> Freeze for RawCuLog<'a>
impl<'a> RefUnwindSafe for RawCuLog<'a>
impl<'a> Send for RawCuLog<'a>
impl<'a> Sync for RawCuLog<'a>
impl<'a> Unpin for RawCuLog<'a>
impl<'a> UnsafeUnpin for RawCuLog<'a>
impl<'a> UnwindSafe for RawCuLog<'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