pub struct PerInstance<'a>(/* private fields */);Expand description
Marker that instructs glium that the buffer is to be used per instance.
Trait Implementations§
Source§impl<'a> From<PerInstance<'a>> for VerticesSource<'a>
impl<'a> From<PerInstance<'a>> for VerticesSource<'a>
Source§fn from(this: PerInstance<'a>) -> VerticesSource<'a>
fn from(this: PerInstance<'a>) -> VerticesSource<'a>
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for PerInstance<'a>
impl<'a> !Send for PerInstance<'a>
impl<'a> !Sync for PerInstance<'a>
impl<'a> !UnwindSafe for PerInstance<'a>
impl<'a> Freeze for PerInstance<'a>
impl<'a> Unpin for PerInstance<'a>
impl<'a> UnsafeUnpin for PerInstance<'a>
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<'a, T> MultiVerticesSource<'a> for Twhere
T: Into<VerticesSource<'a>>,
impl<'a, T> MultiVerticesSource<'a> for Twhere
T: Into<VerticesSource<'a>>,
Source§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.