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

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

Inner information about a buffer.

Fields

buffer: &'a UnsafeBuffer

The underlying buffer object.

offset: usize

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> Clone for BufferInner<'a>[src]

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

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

Auto Trait Implementations

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

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

impl<'a> Unpin for BufferInner<'a>

impl<'a> UnwindSafe for BufferInner<'a>

impl<'a> RefUnwindSafe for BufferInner<'a>

Blanket Implementations

impl<T> Content for T[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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]