[][src]Struct json5format::Json5Format

pub struct Json5Format { /* fields omitted */ }

A JSON5 formatter that parses a valid JSON5 input buffer and produces a new, formatted document.

Implementations

impl Json5Format[src]

pub fn with_options(options: FormatOptions) -> Result<Self, Error>[src]

Create and return a Json5Format, with the given options to be applied to the Json5Format::to_utf8() operation.

pub fn new() -> Result<Self, Error>[src]

Create and return a Json5Format, with the default settings.

pub fn to_utf8(
    &self,
    parsed_document: &ParsedDocument
) -> Result<Vec<u8>, Error>
[src]

Formats the parsed document into a new Vector of UTF8 bytes.

Arguments

  • parsed_document - The parsed state of the incoming document.

Example

let format = Json5Format::new()?;
let parsed_document = ParsedDocument::from_str(&buffer, Some(filename))?;
let bytes = format.to_utf8(&parsed_document)?;

pub fn to_string(
    &self,
    parsed_document: &ParsedDocument
) -> Result<String, Error>
[src]

Formats the parsed document into a new String.

Arguments

  • parsed_document - The parsed state of the incoming document.

Example

let format = Json5Format::new()?;
let parsed_document = ParsedDocument::from_str(&buffer, Some(filename))?;
let formatted = format.to_string(&parsed_document)?;

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.