pub struct GizmoFrame {
pub lines: Vec<GizmoLineInstance>,
}Expand description
Per-frame gizmo lines published by a host application (editor,
debug tooling) and consumed by the engine’s GizmoLane.
Fields§
§lines: Vec<GizmoLineInstance>Line segments to draw this frame.
Implementations§
Trait Implementations§
Source§impl Clone for GizmoFrame
impl Clone for GizmoFrame
Source§fn clone(&self) -> GizmoFrame
fn clone(&self) -> GizmoFrame
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GizmoFrame
impl Debug for GizmoFrame
Source§impl Default for GizmoFrame
impl Default for GizmoFrame
Source§fn default() -> GizmoFrame
fn default() -> GizmoFrame
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GizmoFrame
impl RefUnwindSafe for GizmoFrame
impl Send for GizmoFrame
impl Sync for GizmoFrame
impl Unpin for GizmoFrame
impl UnsafeUnpin for GizmoFrame
impl UnwindSafe for GizmoFrame
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