pub struct CudaSessionTransferStats {
pub requested_chunks: usize,
pub hit_chunks: usize,
pub missed_chunks: usize,
pub transferred_bytes: usize,
}Expand description
Aggregate outcome for a session-scoped streaming transfer.
Fields§
§requested_chunks: usize§hit_chunks: usize§missed_chunks: usize§transferred_bytes: usizeImplementations§
Trait Implementations§
Source§impl Clone for CudaSessionTransferStats
impl Clone for CudaSessionTransferStats
Source§fn clone(&self) -> CudaSessionTransferStats
fn clone(&self) -> CudaSessionTransferStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CudaSessionTransferStats
impl Debug for CudaSessionTransferStats
Source§impl Default for CudaSessionTransferStats
impl Default for CudaSessionTransferStats
Source§fn default() -> CudaSessionTransferStats
fn default() -> CudaSessionTransferStats
Returns the “default value” for a type. Read more
Source§impl PartialEq for CudaSessionTransferStats
impl PartialEq for CudaSessionTransferStats
Source§fn eq(&self, other: &CudaSessionTransferStats) -> bool
fn eq(&self, other: &CudaSessionTransferStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CudaSessionTransferStats
impl Eq for CudaSessionTransferStats
impl StructuralPartialEq for CudaSessionTransferStats
Auto Trait Implementations§
impl Freeze for CudaSessionTransferStats
impl RefUnwindSafe for CudaSessionTransferStats
impl Send for CudaSessionTransferStats
impl Sync for CudaSessionTransferStats
impl Unpin for CudaSessionTransferStats
impl UnsafeUnpin for CudaSessionTransferStats
impl UnwindSafe for CudaSessionTransferStats
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