[][src]Struct wgpu::CommandBufferDescriptor

#[repr(C)]pub struct CommandBufferDescriptor<L> {
    pub label: L,
}

Describes a [CommandBuffer].

Fields

label: L

Implementations

impl<L> CommandBufferDescriptor<L>[src]

pub fn map_label<K>(
    &self,
    fun: impl FnOnce(&L) -> K
) -> CommandBufferDescriptor<K>
[src]

Trait Implementations

impl<L> Clone for CommandBufferDescriptor<L> where
    L: Clone
[src]

impl<L> Debug for CommandBufferDescriptor<L> where
    L: Debug
[src]

impl<L> Default for CommandBufferDescriptor<L> where
    L: Default
[src]

impl<'de, L> Deserialize<'de> for CommandBufferDescriptor<L> where
    L: Deserialize<'de>, 
[src]

impl<L> Eq for CommandBufferDescriptor<L> where
    L: Eq
[src]

impl<L> Hash for CommandBufferDescriptor<L> where
    L: Hash
[src]

impl<L> PartialEq<CommandBufferDescriptor<L>> for CommandBufferDescriptor<L> where
    L: PartialEq<L>, 
[src]

impl<L> Serialize for CommandBufferDescriptor<L> where
    L: Serialize
[src]

Auto Trait Implementations

impl<L> RefUnwindSafe for CommandBufferDescriptor<L> where
    L: RefUnwindSafe

impl<L> Send for CommandBufferDescriptor<L> where
    L: Send

impl<L> Sync for CommandBufferDescriptor<L> where
    L: Sync

impl<L> Unpin for CommandBufferDescriptor<L> where
    L: Unpin

impl<L> UnwindSafe for CommandBufferDescriptor<L> where
    L: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.