pub enum PathOption {
    TrailingCommas(bool),
    CollapseContainersOfOne(bool),
    SortArrayItems(bool),
    PropertyNameOrder(Vec<&'static str>),
}
Expand description

Options that can be applied to specific objects or arrays in the target JSON5 schema, through FormatOptions.options_by_path. Each option can be set at most once per unique path.

Variants

TrailingCommas(bool)

For matched paths, overrides the FormatOption.trailing_comma provided default.

CollapseContainersOfOne(bool)

For matched paths, overrides the FormatOption.collapse_container_of_one provided default.

SortArrayItems(bool)

For matched paths, overrides the FormatOption.sort_array_items provided default.

PropertyNameOrder(Vec<&'static str>)

Contains a vector of property names. When formatting an object matching the path in FormatOptions.options_by_path a specified path, properties of the object will be sorted to match the given order. Any properties not in this list will retain their original order, and placed after the sorted properties.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.