pub enum CudaSessionChunkEvent<'a> {
Hit(CudaChunkTransferHit<'a>),
Miss(&'a CudaChunkTransferDescriptor),
}Variants§
Hit(CudaChunkTransferHit<'a>)
Miss(&'a CudaChunkTransferDescriptor)
Implementations§
Source§impl<'a> CudaSessionChunkEvent<'a>
impl<'a> CudaSessionChunkEvent<'a>
pub fn descriptor(&self) -> &'a CudaChunkTransferDescriptor
Trait Implementations§
Source§impl<'a> Clone for CudaSessionChunkEvent<'a>
impl<'a> Clone for CudaSessionChunkEvent<'a>
Source§fn clone(&self) -> CudaSessionChunkEvent<'a>
fn clone(&self) -> CudaSessionChunkEvent<'a>
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 moreAuto Trait Implementations§
impl<'a> !Freeze for CudaSessionChunkEvent<'a>
impl<'a> RefUnwindSafe for CudaSessionChunkEvent<'a>
impl<'a> !Send for CudaSessionChunkEvent<'a>
impl<'a> !Sync for CudaSessionChunkEvent<'a>
impl<'a> Unpin for CudaSessionChunkEvent<'a>
impl<'a> UnsafeUnpin for CudaSessionChunkEvent<'a>
impl<'a> !UnwindSafe for CudaSessionChunkEvent<'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