[][src]Struct nannou::vk::buffer::cpu_access::WriteLock

pub struct WriteLock<'a, T> where
    T: 'a + 'a + ?Sized
{ /* fields omitted */ }

Object that can be used to read or write the content of a CpuAccessibleBuffer.

Note that this object holds a rwlock write guard on the chunk. If another thread tries to access this buffer's content or tries to submit a GPU command that uses this buffer, it will block.

Methods

impl<'a, T> WriteLock<'a, T> where
    T: 'a + ?Sized
[src]

pub fn map<U, F>(self, f: F) -> WriteLock<'a, U> where
    F: FnOnce(&mut T) -> &mut U,
    U: 'a + ?Sized
[src]

Makes a new WriteLock to access a sub-part of the current WriteLock.

Trait Implementations

impl<'a, T> DerefMut for WriteLock<'a, T> where
    T: 'a + ?Sized
[src]

impl<'a, T> Deref for WriteLock<'a, T> where
    T: 'a + ?Sized
[src]

type Target = T

The resulting type after dereferencing.

Auto Trait Implementations

impl<'a, T> !Send for WriteLock<'a, T>

impl<'a, T: ?Sized> Sync for WriteLock<'a, T>

Blanket Implementations

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

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

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.

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

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

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

impl<T> DeviceOwned for T where
    T: Deref,
    <T as Deref>::Target: DeviceOwned
[src]

impl<T> Content for T[src]

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

impl<T> Erased for T

impl<S> FromSample<S> for S[src]

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.