pub struct ProfileResult {
pub compute_units: ComputeUnitsEstimationResult,
pub state: ProfileState,
pub slot: u64,
pub uuid: Option<Uuid>,
}Expand description
The struct for storing the profiling results.
Fields§
§compute_units: ComputeUnitsEstimationResult§state: ProfileState§slot: u64§uuid: Option<Uuid>Implementations§
Trait Implementations§
Source§impl Clone for ProfileResult
impl Clone for ProfileResult
Source§fn clone(&self) -> ProfileResult
fn clone(&self) -> ProfileResult
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 ProfileResult
impl Debug for ProfileResult
Source§impl<'de> Deserialize<'de> for ProfileResult
impl<'de> Deserialize<'de> for ProfileResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProfileResult
impl PartialEq for ProfileResult
Source§impl Serialize for ProfileResult
impl Serialize for ProfileResult
impl StructuralPartialEq for ProfileResult
Auto Trait Implementations§
impl Freeze for ProfileResult
impl RefUnwindSafe for ProfileResult
impl Send for ProfileResult
impl Sync for ProfileResult
impl Unpin for ProfileResult
impl UnwindSafe for ProfileResult
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