pub enum DebugContent {
Line(Line),
Circle {
center: Point2d,
radius: f32,
},
Text {
pos: Point2d,
label: String,
},
}
Expand description
An debug element of a chunk
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DebugContent
impl RefUnwindSafe for DebugContent
impl Send for DebugContent
impl Sync for DebugContent
impl Unpin for DebugContent
impl UnwindSafe for DebugContent
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