pub struct BufferViewMut { /* private fields */ }unstable-wgpu-29 only.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.
Implementations§
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 len(&self) -> usize
Available on crate feature wgpu-29 only.
pub fn len(&self) -> usize
wgpu-29 only.Returns the length of this view; the number of bytes to be written.
Sourcepub fn is_empty(&self) -> bool
Available on crate feature wgpu-29 only.
pub fn is_empty(&self) -> bool
wgpu-29 only.Returns true if the view has a length of 0.
Note that this is currently impossible.
Sourcepub fn slice<'a, S>(&'a mut self, bounds: S) -> WriteOnly<'a, [u8]>where
S: RangeBounds<usize>,
Available on crate feature wgpu-29 only.
pub fn slice<'a, S>(&'a mut self, bounds: S) -> WriteOnly<'a, [u8]>where
S: RangeBounds<usize>,
wgpu-29 only.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])
Available on crate feature wgpu-29 only.
pub fn copy_from_slice(&mut self, src: &[u8])
wgpu-29 only.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
Source§impl Drop for BufferViewMut
impl Drop 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 UnsafeUnpin 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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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§impl<T> Pointable for T
impl<T> Pointable for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.