pub struct VramBenchmarkResult {
pub operation: String,
pub duration_ms: f64,
pub memory_allocated: usize,
pub utilization: f32,
pub throughput: f64,
}
Expand description
VRAM Benchmark Result
Fields§
§operation: String
Operation name
duration_ms: f64
Duration in milliseconds
memory_allocated: usize
Memory allocated in bytes
utilization: f32
Memory utilization percentage
throughput: f64
Throughput (operations per second)
Trait Implementations§
Source§impl Clone for VramBenchmarkResult
impl Clone for VramBenchmarkResult
Source§fn clone(&self) -> VramBenchmarkResult
fn clone(&self) -> VramBenchmarkResult
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 moreAuto Trait Implementations§
impl Freeze for VramBenchmarkResult
impl RefUnwindSafe for VramBenchmarkResult
impl Send for VramBenchmarkResult
impl Sync for VramBenchmarkResult
impl Unpin for VramBenchmarkResult
impl UnwindSafe for VramBenchmarkResult
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