Struct wgpu_util::BufferInitDescriptor
source · [−]pub struct BufferInitDescriptor<'a> {
pub label: Label<'a>,
pub contents: &'a [u8],
pub size: Option<BufferAddress>,
pub usage: BufferUsages,
}Expand description
wgpu::util::BufferInitDescriptor but with an additional size field.
Fields
label: Label<'a>Debug label of a buffer. This will show up in graphics debuggers for easy identification.
contents: &'a [u8]Contents of a buffer on creation.
size: Option<BufferAddress>Size of the buffer. Must be at least size of contents. If unspecified, the size of contents is used.
usage: BufferUsagesUsages of a buffer. If the buffer is used in any way that isn’t specified here, the operation will panic.
Trait Implementations
sourceimpl<'a> Clone for BufferInitDescriptor<'a>
impl<'a> Clone for BufferInitDescriptor<'a>
sourcefn clone(&self) -> BufferInitDescriptor<'a>
fn clone(&self) -> BufferInitDescriptor<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<'a> Debug for BufferInitDescriptor<'a>
impl<'a> Debug for BufferInitDescriptor<'a>
sourceimpl<'a> Hash for BufferInitDescriptor<'a>
impl<'a> Hash for BufferInitDescriptor<'a>
sourceimpl<'a> PartialEq<BufferInitDescriptor<'a>> for BufferInitDescriptor<'a>
impl<'a> PartialEq<BufferInitDescriptor<'a>> for BufferInitDescriptor<'a>
sourcefn eq(&self, other: &BufferInitDescriptor<'a>) -> bool
fn eq(&self, other: &BufferInitDescriptor<'a>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &BufferInitDescriptor<'a>) -> bool
fn ne(&self, other: &BufferInitDescriptor<'a>) -> bool
This method tests for !=.
impl<'a> Eq for BufferInitDescriptor<'a>
impl<'a> StructuralEq for BufferInitDescriptor<'a>
impl<'a> StructuralPartialEq for BufferInitDescriptor<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for BufferInitDescriptor<'a>
impl<'a> Send for BufferInitDescriptor<'a>
impl<'a> Sync for BufferInitDescriptor<'a>
impl<'a> Unpin for BufferInitDescriptor<'a>
impl<'a> UnwindSafe for BufferInitDescriptor<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key and return true if they are equal.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more