pub struct ProviderDispatchStats {
pub count: u64,
pub total_wall_time_ns: u64,
}Fields§
§count: u64Number of GPU dispatches recorded for this category.
total_wall_time_ns: u64Accumulated wall-clock time of dispatches in nanoseconds (host measured).
Trait Implementations§
Source§impl Clone for ProviderDispatchStats
impl Clone for ProviderDispatchStats
Source§fn clone(&self) -> ProviderDispatchStats
fn clone(&self) -> ProviderDispatchStats
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 ProviderDispatchStats
impl Debug for ProviderDispatchStats
Source§impl Default for ProviderDispatchStats
impl Default for ProviderDispatchStats
Source§fn default() -> ProviderDispatchStats
fn default() -> ProviderDispatchStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProviderDispatchStats
impl<'de> Deserialize<'de> for ProviderDispatchStats
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 ProviderDispatchStats
impl PartialEq for ProviderDispatchStats
Source§impl Serialize for ProviderDispatchStats
impl Serialize for ProviderDispatchStats
impl Copy for ProviderDispatchStats
impl Eq for ProviderDispatchStats
impl StructuralPartialEq for ProviderDispatchStats
Auto Trait Implementations§
impl Freeze for ProviderDispatchStats
impl RefUnwindSafe for ProviderDispatchStats
impl Send for ProviderDispatchStats
impl Sync for ProviderDispatchStats
impl Unpin for ProviderDispatchStats
impl UnwindSafe for ProviderDispatchStats
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