Method: RustyJson.parse

Defined in:
lib/rusty_json.rb

.parse(json, name = 'JSON') ⇒ Object

Example Usage:

json = File.read(‘json_file.json’) rust = RustyJson.parse(json) File.write(‘output_structs.rs’, rust)

In the above example, RustyJson will parse the JSON in the file: json_file.json and then you print the rust structs out to a Rust File.

Parameters:

  • json (String)

    the name of the returned struct

  • name (String) (defaults to: 'JSON')

    the JSON to parse

Returns:

  • String

[View source]

25
26
27
28
# File 'lib/rusty_json.rb', line 25

def self.parse(json, name = 'JSON')
  parser = Parser.new(name, json)
  parser.parse
end