Skip to main content

DeviceBufferMut

Trait DeviceBufferMut 

Source
pub trait DeviceBufferMut<T: DeviceRepr>: DeviceBuffer<T> + DeviceSliceMut<T> { }
Expand description

Shared abstraction for mutable typed device buffers.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T, B> DeviceBufferMut<T> for B
where T: DeviceRepr, B: DeviceBuffer<T> + DeviceSliceMut<T> + ?Sized,