pub struct QueuedDraw {
pub order: RenderOrder,
pub depth: u32,
pub call: DrawCall,
}Expand description
A queued draw call with ordering metadata.
Fields§
§order: RenderOrder§depth: u32§call: DrawCallTrait Implementations§
Source§impl Clone for QueuedDraw
impl Clone for QueuedDraw
Source§fn clone(&self) -> QueuedDraw
fn clone(&self) -> QueuedDraw
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for QueuedDraw
impl RefUnwindSafe for QueuedDraw
impl Send for QueuedDraw
impl Sync for QueuedDraw
impl Unpin for QueuedDraw
impl UnsafeUnpin for QueuedDraw
impl UnwindSafe for QueuedDraw
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