Struct vulkano::buffer::BufferInner [] [src]

pub struct BufferInner<'a> {
    pub buffer: &'a UnsafeBuffer,
    pub offset: usize,
}

Inner information about a buffer.

Fields

The underlying buffer object.

The offset in bytes from the start of the underlying buffer object to the start of the buffer we're describing.

Trait Implementations

impl<'a> Copy for BufferInner<'a>
[src]

impl<'a> Clone for BufferInner<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for BufferInner<'a>
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for BufferInner<'a>

impl<'a> Sync for BufferInner<'a>