pub enum TableFormat {
Md,
Tsv,
Json,
}Variants§
Md
Markdown table (great for pasting into ChatGPT).
Tsv
Tab-separated values (good for piping to other tools).
Json
JSON (compact).
Trait Implementations§
Source§impl Clone for TableFormat
impl Clone for TableFormat
Source§fn clone(&self) -> TableFormat
fn clone(&self) -> TableFormat
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 TableFormat
impl Debug for TableFormat
Source§impl<'de> Deserialize<'de> for TableFormat
impl<'de> Deserialize<'de> for TableFormat
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TableFormat
impl PartialEq for TableFormat
Source§impl Serialize for TableFormat
impl Serialize for TableFormat
impl Copy for TableFormat
impl Eq for TableFormat
impl StructuralPartialEq for TableFormat
Auto Trait Implementations§
impl Freeze for TableFormat
impl RefUnwindSafe for TableFormat
impl Send for TableFormat
impl Sync for TableFormat
impl Unpin for TableFormat
impl UnsafeUnpin for TableFormat
impl UnwindSafe for TableFormat
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