Struct gfx::handle::Buffer []

pub struct Buffer<R, T>(_, _) where R: Resources;

Type-safe buffer handle

Methods

impl<R, T> Buffer<R, T> where R: Resources

fn get_info(&self) -> &BufferInfo

Get the associated information about the buffer

fn len(&self) -> usize

Get the number of elements in the buffer.

Fails if T is zero-sized.

Trait Implementations

impl<R, T> PartialEq<Buffer<R, T>> for Buffer<R, T> where R: Resources + PartialEq<R>, T: PartialEq<T>

fn eq(&self, __arg_0: &Buffer<R, T>) -> bool

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

fn ne(&self, __arg_0: &Buffer<R, T>) -> bool

This method tests for !=.

impl<R, T> Hash for Buffer<R, T> where R: Resources + Hash, T: Hash

fn hash<__HRT>(&self, __arg_0: &mut __HRT) where __HRT: Hasher

impl<R, T> Debug for Buffer<R, T> where R: Resources + Debug, T: Debug

fn fmt(&self, __arg_0: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

impl<R, T> Clone for Buffer<R, T> where R: Resources + Clone, T: Clone

fn clone(&self) -> Buffer<R, T>

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl<R, T> Typed for Buffer<R, T> where R: Resources

type Raw = RawBuffer<R>

The raw type behind the phantom.

fn new(handle: RawBuffer<R>) -> Buffer<R, T>

Crete a new phantom from the raw type.

fn raw(&self) -> &RawBuffer<R>

Get an internal reference to the raw type.