Struct glium::vertex::EmptyVertexAttributes
source · pub struct EmptyVertexAttributes {
pub len: usize,
}
Expand description
Marker that can be passed instead of a buffer to indicate an empty list of buffers.
Fields§
§len: usize
Number of phantom vertices.
Trait Implementations§
source§impl<'a> From<EmptyVertexAttributes> for VerticesSource<'a>
impl<'a> From<EmptyVertexAttributes> for VerticesSource<'a>
source§fn from(this: EmptyVertexAttributes) -> VerticesSource<'a>
fn from(this: EmptyVertexAttributes) -> VerticesSource<'a>
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for EmptyVertexAttributes
impl Send for EmptyVertexAttributes
impl Sync for EmptyVertexAttributes
impl Unpin for EmptyVertexAttributes
impl UnwindSafe for EmptyVertexAttributes
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<'a, T> MultiVerticesSource<'a> for Twhere
T: Into<VerticesSource<'a>>,
impl<'a, T> MultiVerticesSource<'a> for Twhere T: Into<VerticesSource<'a>>,
§type Iterator = IntoIter<VerticesSource<'a>>
type Iterator = IntoIter<VerticesSource<'a>>
Iterator that enumerates each source.
source§fn iter(self) -> IntoIter<VerticesSource<'a>>
fn iter(self) -> IntoIter<VerticesSource<'a>>
Iterates over the
VerticesSource
.