pub struct QueueWriteBufferView { /* private fields */ }Available on crate feature
unstable-wgpu-29 only.Expand description
A write-only view into a staging buffer.
This type is what Queue::write_buffer_with() returns.
Implementations§
Source§impl QueueWriteBufferView
These methods are equivalent to the methods of the same names on WriteOnly.
impl QueueWriteBufferView
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.
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 Drop for QueueWriteBufferView
impl Drop for QueueWriteBufferView
Auto Trait Implementations§
impl Freeze for QueueWriteBufferView
impl !RefUnwindSafe for QueueWriteBufferView
impl Send for QueueWriteBufferView
impl Sync for QueueWriteBufferView
impl Unpin for QueueWriteBufferView
impl UnsafeUnpin for QueueWriteBufferView
impl !UnwindSafe for QueueWriteBufferView
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
§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>
Convert
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>
Convert
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)
Convert
&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)
Convert
&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>
Converts
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>
Converts
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>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
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
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.