pub struct BufferViewMut {
buffer: Buffer,
offset: BufferAddress,
size: BufferSize,
inner: DispatchBufferMappedRange,
}Expand description
A write-only view of a mapped buffer’s bytes.
To get a BufferViewMut, first map the buffer, and then
call buffer.slice(range).get_mapped_range_mut().
Because Rust has no write-only reference type
(&[u8] is read-only and &mut [u8] is read-write),
this type does not dereference to a slice in the way that BufferView does.
Instead, .slice() returns a special WriteOnly pointer type,
and there are also a few convenience methods such as BufferViewMut::copy_from_slice().
Before the buffer can be unmapped, all BufferViewMuts observing it
must be dropped. Otherwise, the call to Buffer::unmap will panic.
For example code, see the documentation on mapping buffers.
Fields§
§buffer: Buffer§offset: BufferAddress§size: BufferSize§inner: DispatchBufferMappedRangeImplementations§
Source§impl BufferViewMut
These methods are equivalent to the methods of the same names on WriteOnly.
impl BufferViewMut
These methods are equivalent to the methods of the same names on WriteOnly.
Sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Returns true if the view has a length of 0.
Note that this is currently impossible.
Sourcepub fn slice<'a, S: RangeBounds<usize>>(
&'a mut self,
bounds: S,
) -> WriteOnly<'a, [u8]>
pub fn slice<'a, S: RangeBounds<usize>>( &'a mut self, bounds: S, ) -> WriteOnly<'a, [u8]>
Returns a WriteOnly reference to a portion of this.
.slice(..) can be used to access the whole data.
Sourcepub fn copy_from_slice(&mut self, src: &[u8])
pub fn copy_from_slice(&mut self, src: &[u8])
Copies all elements from src into self.
The length of src must be the same as self.
This method is equivalent to
self.slice(..).copy_from_slice(src).
Trait Implementations§
Source§impl Debug for BufferViewMut
impl Debug for BufferViewMut
Auto Trait Implementations§
impl Freeze for BufferViewMut
impl !RefUnwindSafe for BufferViewMut
impl Send for BufferViewMut
impl Sync for BufferViewMut
impl Unpin for BufferViewMut
impl !UnwindSafe for BufferViewMut
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more