pub struct DebugPoint {
pub p: Pos,
pub color: HexColor,
pub label: i32,
pub value: f32,
}Expand description
Internal solver debug point drawn at the end of world_draw. (b3DebugPoint)
Fields§
§p: Pos§color: HexColor§label: i32§value: f32Trait Implementations§
Source§impl Clone for DebugPoint
impl Clone for DebugPoint
Source§fn clone(&self) -> DebugPoint
fn clone(&self) -> DebugPoint
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 moreimpl Copy for DebugPoint
Source§impl Debug for DebugPoint
impl Debug for DebugPoint
Auto Trait Implementations§
impl Freeze for DebugPoint
impl RefUnwindSafe for DebugPoint
impl Send for DebugPoint
impl Sync for DebugPoint
impl Unpin for DebugPoint
impl UnsafeUnpin for DebugPoint
impl UnwindSafe for DebugPoint
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