logo
pub struct CpuBufferPoolSubbuffer<T, A> where
    [T]: BufferContents,
    A: MemoryPool
{ /* private fields */ }
Expand description

A subbuffer allocated from a CpuBufferPool.

When this object is destroyed, the subbuffer is automatically reclaimed by the pool.

Trait Implementations

Returns the inner information about this buffer.

Returns the size of the buffer in bytes.

Returns a key that uniquely identifies the buffer. Two buffers or images that potentially overlap in memory must return the same key. Read more

Locks the resource for usage on the GPU. Returns an error if the lock can’t be acquired. Read more

Locks the resource for usage on the GPU. Supposes that the resource is already locked, and simply increases the lock by one. Read more

Unlocks the resource previously acquired with try_gpu_lock or increase_gpu_lock. Read more

Returns a BufferSlice covering the whole buffer.

Returns a BufferSlice for a subrange of elements in the buffer. Returns None if out of range. Read more

Returns a BufferSlice for a single element in the buffer. Returns None if out of range. Read more

Gets the device address for this buffer. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Returns the device that owns Self.

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

The type of the content.

Returns the length of the buffer in number of elements. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.