pub enum TupleRenderMode {
Line,
Grid,
}Expand description
Preferred render mode for tuple-like values.
Variants§
Line
Render all elements on a single line.
Grid
Render elements inside an ImGui table with multiple columns.
Trait Implementations§
Source§impl Clone for TupleRenderMode
impl Clone for TupleRenderMode
Source§fn clone(&self) -> TupleRenderMode
fn clone(&self) -> TupleRenderMode
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 moreSource§impl Debug for TupleRenderMode
impl Debug for TupleRenderMode
impl Copy for TupleRenderMode
Auto Trait Implementations§
impl Freeze for TupleRenderMode
impl RefUnwindSafe for TupleRenderMode
impl Send for TupleRenderMode
impl Sync for TupleRenderMode
impl Unpin for TupleRenderMode
impl UnwindSafe for TupleRenderMode
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