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

pub struct WriteLock<'a, T> where
    T: '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> Unpin for WriteLock<'a, T>

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

impl<'a, T: ?Sized> UnwindSafe for WriteLock<'a, T> where
    T: RefUnwindSafe

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

Blanket Implementations

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

impl<T> From<T> for 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Content for T[src]

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

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

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

impl<T> SetParameter for T

impl<T> SetParameter for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,