[][src]Struct vulkano::buffer::cpu_access::ReadLock

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

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

Note that this object holds a rwlock read 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: ?Sized + 'a> ReadLock<'a, T>[src]

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

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

Trait Implementations

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

type Target = T

The resulting type after dereferencing.

Auto Trait Implementations

impl<'a, T: ?Sized> Unpin for ReadLock<'a, T>

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

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

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

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

Blanket Implementations

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

impl<T> Content for T[src]

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> 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]