pub struct ToJsonOptions {
pub indent: String,
pub strip_version: bool,
}Expand description
Options for SAS → JSON conversion.
Fields§
§indent: StringIndentation string (default: " ").
strip_version: boolRemove __sas_version__ from the output (default: true).
Trait Implementations§
Source§impl Clone for ToJsonOptions
impl Clone for ToJsonOptions
Source§fn clone(&self) -> ToJsonOptions
fn clone(&self) -> ToJsonOptions
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 ToJsonOptions
impl Debug for ToJsonOptions
Auto Trait Implementations§
impl Freeze for ToJsonOptions
impl RefUnwindSafe for ToJsonOptions
impl Send for ToJsonOptions
impl Sync for ToJsonOptions
impl Unpin for ToJsonOptions
impl UnsafeUnpin for ToJsonOptions
impl UnwindSafe for ToJsonOptions
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