pub struct JsonToIsonOptions {
pub flatten: bool,
pub align_columns: bool,
}Expand description
Options for json_to_ison conversion
Fields§
§flatten: boolWhether to flatten nested objects into separate tables (default: true)
align_columns: boolWhether to align columns in output (default: false)
Trait Implementations§
Source§impl Clone for JsonToIsonOptions
impl Clone for JsonToIsonOptions
Source§fn clone(&self) -> JsonToIsonOptions
fn clone(&self) -> JsonToIsonOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 JsonToIsonOptions
impl Debug for JsonToIsonOptions
Auto Trait Implementations§
impl Freeze for JsonToIsonOptions
impl RefUnwindSafe for JsonToIsonOptions
impl Send for JsonToIsonOptions
impl Sync for JsonToIsonOptions
impl Unpin for JsonToIsonOptions
impl UnsafeUnpin for JsonToIsonOptions
impl UnwindSafe for JsonToIsonOptions
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