pub enum DisplayMode {
RustLike(RustLikeOptions),
NestedString,
}
Expand description
The display mode chooses how the value is displayed
Variants§
RustLike(RustLikeOptions)
RustLike - takes inspiration from Rust and other programming languages.
With RustLikeOptions::full()
we get:
- Struct:
TypeName { field1: X, }
- Array:
[value1, value2]
- Map:
{ key1 => value1 }
- Enum:
Name::Variant
,Name::Variant(value1)
,Name::Variant { field1: value1 }
With RustLikeOptions::debug()
we don’t get the Enum type names, and values are
formatted more like their Debug representation.
NestedString
==RustLike is recommended over NestedString. This may be deprecated soon== NestedString - is somewhat like the Manifest format, eg:
- Struct:
Tuple:TypeName(field1 = X)
- Array:
Array<X>(value1, value2)
- Map:
Map<KeyKind:TypeName, ValueKind>(key1, value1)
- Enum:
Enum:TypeName(0:VariantName, field1, field2)
Trait Implementations§
Source§impl Clone for DisplayMode
impl Clone for DisplayMode
Source§fn clone(&self) -> DisplayMode
fn clone(&self) -> DisplayMode
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 DisplayMode
impl Debug for DisplayMode
impl Copy for DisplayMode
Auto Trait Implementations§
impl Freeze for DisplayMode
impl RefUnwindSafe for DisplayMode
impl Send for DisplayMode
impl Sync for DisplayMode
impl Unpin for DisplayMode
impl UnwindSafe for DisplayMode
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