pub enum OutputEncoding {
Csv,
Json {
should_pretty_print: bool,
},
}
Expand description
An encoding that DBZs can be translated to.
Variants§
Trait Implementations§
Source§impl Clone for OutputEncoding
impl Clone for OutputEncoding
Source§fn clone(&self) -> OutputEncoding
fn clone(&self) -> OutputEncoding
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for OutputEncoding
impl Debug for OutputEncoding
impl Copy for OutputEncoding
Auto Trait Implementations§
impl Freeze for OutputEncoding
impl RefUnwindSafe for OutputEncoding
impl Send for OutputEncoding
impl Sync for OutputEncoding
impl Unpin for OutputEncoding
impl UnwindSafe for OutputEncoding
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