diff --git a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-Circle.md b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-Circle.md index 206c8c3a4..cf42f713a 100644 --- a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-Circle.md +++ b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-Circle.md @@ -2,6 +2,7 @@ Circle struct with radius field + Fully qualified path: `hello_world::Circle` ## Members diff --git a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-CircleShape.md b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-CircleShape.md index afc651ed4..d6997b9ec 100644 --- a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-CircleShape.md +++ b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-CircleShape.md @@ -2,6 +2,7 @@ Implementation of the Shape trait for Circle + Fully qualified path: `hello_world::CircleShape` ```rust @@ -14,7 +15,8 @@ impl CircleShape of Shape Shape constant -Fully qualified path: `hello_world::hello_world::CircleShape::SHAPE_CONST` + +Fully qualified path: `hello_world::CircleShape::SHAPE_CONST` ```rust const SHAPE_CONST: felt252 = 'xyz'; @@ -27,6 +29,7 @@ const SHAPE_CONST: felt252 = 'xyz'; Implementation of the area method for Circle + Fully qualified path: `hello_world::CircleShape::area` ```rust @@ -40,7 +43,8 @@ fn area(self: Circle) -> u32 Type alias for a pair of circles -Fully qualified path: `hello_world::hello_world::CircleShape::ShapePair` + +Fully qualified path: `hello_world::CircleShape::ShapePair` ```rust type ShapePair = (Circle, Circle); diff --git a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-Color.md b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-Color.md index 4ffa635d8..316390f31 100644 --- a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-Color.md +++ b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-Color.md @@ -2,6 +2,7 @@ Color enum with Red, Green, and Blue variants + Fully qualified path: `hello_world::Color` ## Variants diff --git a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-FOO.md b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-FOO.md index 012e1dc47..da65e8594 100644 --- a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-FOO.md +++ b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-FOO.md @@ -2,6 +2,7 @@ FOO constant with value 42 + Fully qualified path: `hello_world::FOO` ```rust diff --git a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-Pair.md b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-Pair.md index 190ce9a1e..f0d81932c 100644 --- a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-Pair.md +++ b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-Pair.md @@ -2,6 +2,7 @@ Pair type alias for a tuple of two u32 values + Fully qualified path: `hello_world::Pair` ```rust diff --git a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-Shape.md b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-Shape.md index c4f428f31..b08696b6f 100644 --- a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-Shape.md +++ b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-Shape.md @@ -2,6 +2,7 @@ Shape trait for objects that have an area + Fully qualified path: `hello_world::Shape` ```rust @@ -14,11 +15,8 @@ trait Shape Constant for the shape type -Fully qualified path: `hello_world::hello_world::Shape::SHAPE_CONST` -```rust -const SHAPE_CONST: felt252; -``` +Fully qualified path: `hello_world::Shape::SHAPE_CONST` ## Trait functions @@ -27,6 +25,7 @@ const SHAPE_CONST: felt252; Calculate the area of the shape + Fully qualified path: `Shape::area` ```rust @@ -40,10 +39,7 @@ fn area(self: T) -> u32 Type alias for a pair of shapes -Fully qualified path: `hello_world::hello_world::Shape::ShapePair` -```rust -type ShapePair; -``` +Fully qualified path: `hello_world::Shape::ShapePair` diff --git a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-fib.md b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-fib.md index 7e6fc38f9..dfcf68703 100644 --- a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-fib.md +++ b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-fib.md @@ -1,6 +1,10 @@ # fib -Calculate the nth Fibonacci number # Arguments * `n` - The index of the Fibonacci number to calculate +Calculate the nth Fibonacci number + +# Arguments +* `n` - The index of the Fibonacci number to calculate + Fully qualified path: `hello_world::fib` diff --git a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-main.md b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-main.md index b83b6c3e0..6b00b8f21 100644 --- a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-main.md +++ b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-main.md @@ -2,6 +2,7 @@ Main function that calculates the 16th Fibonacci number + Fully qualified path: `hello_world::main` ```rust diff --git a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-tests-it_works.md b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-tests-it_works.md index 71afcebe5..f78d405fe 100644 --- a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-tests-it_works.md +++ b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-tests-it_works.md @@ -1,6 +1,8 @@ # it_works Really +works. + Fully qualified path: `hello_world::tests::it_works` diff --git a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-tests.md b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-tests.md index d09e3164b..f72f03ff7 100644 --- a/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-tests.md +++ b/extensions/scarb-doc/tests/data/hello_world_no_features/src/hello_world-tests.md @@ -2,6 +2,7 @@ Tests module + Fully qualified path: `hello_world::tests` ## Free functions diff --git a/extensions/scarb-doc/tests/data/hello_world_sub_package_no_features/src/hello_world_sub_package-main.md b/extensions/scarb-doc/tests/data/hello_world_sub_package_no_features/src/hello_world_sub_package-main.md index 620d23eff..5c91f6fdb 100644 --- a/extensions/scarb-doc/tests/data/hello_world_sub_package_no_features/src/hello_world_sub_package-main.md +++ b/extensions/scarb-doc/tests/data/hello_world_sub_package_no_features/src/hello_world_sub_package-main.md @@ -2,6 +2,7 @@ Main function that cairo runs as a binary entrypoint. + Fully qualified path: `hello_world_sub_package::main` ```rust diff --git a/extensions/scarb-doc/tests/data/hello_world_sub_package_no_features/src/hello_world_sub_package-test.md b/extensions/scarb-doc/tests/data/hello_world_sub_package_no_features/src/hello_world_sub_package-test.md index 269a52e19..40e2a7d37 100644 --- a/extensions/scarb-doc/tests/data/hello_world_sub_package_no_features/src/hello_world_sub_package-test.md +++ b/extensions/scarb-doc/tests/data/hello_world_sub_package_no_features/src/hello_world_sub_package-test.md @@ -1,12 +1,14 @@ # test -Function that prints "test" to stdout with endline. Can invoke it like that: +Function that prints "test" to stdout with endline. +Can invoke it like that: ```cairo fn main() { test(); } ``` + Fully qualified path: `hello_world_sub_package::test` ```rust diff --git a/extensions/scarb-doc/tests/data/hello_world_sub_package_with_features/src/hello_world_sub_package-main.md b/extensions/scarb-doc/tests/data/hello_world_sub_package_with_features/src/hello_world_sub_package-main.md index 620d23eff..5c91f6fdb 100644 --- a/extensions/scarb-doc/tests/data/hello_world_sub_package_with_features/src/hello_world_sub_package-main.md +++ b/extensions/scarb-doc/tests/data/hello_world_sub_package_with_features/src/hello_world_sub_package-main.md @@ -2,6 +2,7 @@ Main function that cairo runs as a binary entrypoint. + Fully qualified path: `hello_world_sub_package::main` ```rust diff --git a/extensions/scarb-doc/tests/data/hello_world_sub_package_with_features/src/hello_world_sub_package-test.md b/extensions/scarb-doc/tests/data/hello_world_sub_package_with_features/src/hello_world_sub_package-test.md index 269a52e19..f78351dc2 100644 --- a/extensions/scarb-doc/tests/data/hello_world_sub_package_with_features/src/hello_world_sub_package-test.md +++ b/extensions/scarb-doc/tests/data/hello_world_sub_package_with_features/src/hello_world_sub_package-test.md @@ -1,11 +1,14 @@ # test -Function that prints "test" to stdout with endline. Can invoke it like that: +Function that prints "test" to stdout with endline. +Can invoke it like that: ```cairo fn main() { test(); } ``` +This is a under feature attribute comment. + Fully qualified path: `hello_world_sub_package::test` diff --git a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-Circle.md b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-Circle.md index 206c8c3a4..cf42f713a 100644 --- a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-Circle.md +++ b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-Circle.md @@ -2,6 +2,7 @@ Circle struct with radius field + Fully qualified path: `hello_world::Circle` ## Members diff --git a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-CircleShape.md b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-CircleShape.md index afc651ed4..d6997b9ec 100644 --- a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-CircleShape.md +++ b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-CircleShape.md @@ -2,6 +2,7 @@ Implementation of the Shape trait for Circle + Fully qualified path: `hello_world::CircleShape` ```rust @@ -14,7 +15,8 @@ impl CircleShape of Shape Shape constant -Fully qualified path: `hello_world::hello_world::CircleShape::SHAPE_CONST` + +Fully qualified path: `hello_world::CircleShape::SHAPE_CONST` ```rust const SHAPE_CONST: felt252 = 'xyz'; @@ -27,6 +29,7 @@ const SHAPE_CONST: felt252 = 'xyz'; Implementation of the area method for Circle + Fully qualified path: `hello_world::CircleShape::area` ```rust @@ -40,7 +43,8 @@ fn area(self: Circle) -> u32 Type alias for a pair of circles -Fully qualified path: `hello_world::hello_world::CircleShape::ShapePair` + +Fully qualified path: `hello_world::CircleShape::ShapePair` ```rust type ShapePair = (Circle, Circle); diff --git a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-Color.md b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-Color.md index 4ffa635d8..316390f31 100644 --- a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-Color.md +++ b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-Color.md @@ -2,6 +2,7 @@ Color enum with Red, Green, and Blue variants + Fully qualified path: `hello_world::Color` ## Variants diff --git a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-FOO.md b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-FOO.md index 012e1dc47..da65e8594 100644 --- a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-FOO.md +++ b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-FOO.md @@ -2,6 +2,7 @@ FOO constant with value 42 + Fully qualified path: `hello_world::FOO` ```rust diff --git a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-Pair.md b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-Pair.md index 190ce9a1e..f0d81932c 100644 --- a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-Pair.md +++ b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-Pair.md @@ -2,6 +2,7 @@ Pair type alias for a tuple of two u32 values + Fully qualified path: `hello_world::Pair` ```rust diff --git a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-Shape.md b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-Shape.md index c4f428f31..b08696b6f 100644 --- a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-Shape.md +++ b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-Shape.md @@ -2,6 +2,7 @@ Shape trait for objects that have an area + Fully qualified path: `hello_world::Shape` ```rust @@ -14,11 +15,8 @@ trait Shape Constant for the shape type -Fully qualified path: `hello_world::hello_world::Shape::SHAPE_CONST` -```rust -const SHAPE_CONST: felt252; -``` +Fully qualified path: `hello_world::Shape::SHAPE_CONST` ## Trait functions @@ -27,6 +25,7 @@ const SHAPE_CONST: felt252; Calculate the area of the shape + Fully qualified path: `Shape::area` ```rust @@ -40,10 +39,7 @@ fn area(self: T) -> u32 Type alias for a pair of shapes -Fully qualified path: `hello_world::hello_world::Shape::ShapePair` -```rust -type ShapePair; -``` +Fully qualified path: `hello_world::Shape::ShapePair` diff --git a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-fib.md b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-fib.md index 7e6fc38f9..dfcf68703 100644 --- a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-fib.md +++ b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-fib.md @@ -1,6 +1,10 @@ # fib -Calculate the nth Fibonacci number # Arguments * `n` - The index of the Fibonacci number to calculate +Calculate the nth Fibonacci number + +# Arguments +* `n` - The index of the Fibonacci number to calculate + Fully qualified path: `hello_world::fib` diff --git a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-main.md b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-main.md index b83b6c3e0..6b00b8f21 100644 --- a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-main.md +++ b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-main.md @@ -2,6 +2,7 @@ Main function that calculates the 16th Fibonacci number + Fully qualified path: `hello_world::main` ```rust diff --git a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-test.md b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-test.md index d26d8ce2f..994927fb3 100644 --- a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-test.md +++ b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-test.md @@ -1,12 +1,14 @@ # test -Function that prints "test" to stdout with endline. Can invoke it like that: +Function that prints "test" to stdout with endline. +Can invoke it like that: ```cairo fn main() { test(); } ``` + Fully qualified path: `hello_world::test` ```rust diff --git a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-tests-it_works.md b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-tests-it_works.md index 71afcebe5..f78d405fe 100644 --- a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-tests-it_works.md +++ b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-tests-it_works.md @@ -1,6 +1,8 @@ # it_works Really +works. + Fully qualified path: `hello_world::tests::it_works` diff --git a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-tests.md b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-tests.md index d09e3164b..f72f03ff7 100644 --- a/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-tests.md +++ b/extensions/scarb-doc/tests/data/hello_world_with_features/src/hello_world-tests.md @@ -2,6 +2,7 @@ Tests module + Fully qualified path: `hello_world::tests` ## Free functions diff --git a/extensions/scarb-doc/tests/data/json_doc_hidden.json b/extensions/scarb-doc/tests/data/json_doc_hidden.json index fe600d033..2606a79f4 100644 --- a/extensions/scarb-doc/tests/data/json_doc_hidden.json +++ b/extensions/scarb-doc/tests/data/json_doc_hidden.json @@ -16,7 +16,7 @@ { "item_data": { "name": "main", - "doc": "main", + "doc": "main\n", "signature": "fn main()", "full_path": "hello_world::main" } diff --git a/extensions/scarb-doc/tests/data/json_output_test_data.json b/extensions/scarb-doc/tests/data/json_output_test_data.json index 808be1fc2..5701def5f 100644 --- a/extensions/scarb-doc/tests/data/json_output_test_data.json +++ b/extensions/scarb-doc/tests/data/json_output_test_data.json @@ -14,7 +14,7 @@ { "item_data": { "name": "tests", - "doc": "Tests module", + "doc": "Tests module\n", "signature": null, "full_path": "hello_world::tests" }, @@ -24,7 +24,7 @@ { "item_data": { "name": "it_works", - "doc": "Really", + "doc": "Really\nworks.\n", "signature": "fn it_works()", "full_path": "hello_world::tests::it_works" } @@ -44,7 +44,7 @@ { "item_data": { "name": "FOO", - "doc": "FOO constant with value 42", + "doc": "FOO constant with value 42\n", "signature": "const FOO: u32 = 42;", "full_path": "hello_world::FOO" } @@ -54,7 +54,7 @@ { "item_data": { "name": "main", - "doc": "Main function that calculates the 16th Fibonacci number", + "doc": "Main function that calculates the 16th Fibonacci number\n", "signature": "fn main() -> u32", "full_path": "hello_world::main" } @@ -62,7 +62,7 @@ { "item_data": { "name": "fib", - "doc": "Calculate the nth Fibonacci number # Arguments * `n` - The index of the Fibonacci number to calculate", + "doc": "Calculate the nth Fibonacci number\n\n# Arguments\n* `n` - The index of the Fibonacci number to calculate\n", "signature": "fn fib(mut n: u32) -> u32", "full_path": "hello_world::fib" } @@ -82,7 +82,7 @@ ], "item_data": { "name": "Circle", - "doc": "Circle struct with radius field", + "doc": "Circle struct with radius field\n", "signature": null, "full_path": "hello_world::Circle" } @@ -118,7 +118,7 @@ ], "item_data": { "name": "Color", - "doc": "Color enum with Red, Green, and Blue variants", + "doc": "Color enum with Red, Green, and Blue variants\n", "signature": null, "full_path": "hello_world::Color" } @@ -128,7 +128,7 @@ { "item_data": { "name": "Pair", - "doc": "Pair type alias for a tuple of two u32 values", + "doc": "Pair type alias for a tuple of two u32 values\n", "signature": "type Pair = (u32, u32);", "full_path": "hello_world::Pair" } @@ -141,9 +141,9 @@ { "item_data": { "name": "SHAPE_CONST", - "doc": "Constant for the shape type", - "signature": "const SHAPE_CONST: felt252;", - "full_path": "hello_world::hello_world::Shape::SHAPE_CONST" + "doc": "Constant for the shape type\n", + "signature": "", + "full_path": "hello_world::Shape::SHAPE_CONST" } } ], @@ -151,9 +151,9 @@ { "item_data": { "name": "ShapePair", - "doc": "Type alias for a pair of shapes", - "signature": "type ShapePair;", - "full_path": "hello_world::hello_world::Shape::ShapePair" + "doc": "Type alias for a pair of shapes\n", + "signature": "", + "full_path": "hello_world::Shape::ShapePair" } } ], @@ -161,7 +161,7 @@ { "item_data": { "name": "area", - "doc": "Calculate the area of the shape", + "doc": "Calculate the area of the shape\n", "signature": "fn area(self: T) -> u32", "full_path": "Shape::area" } @@ -169,7 +169,7 @@ ], "item_data": { "name": "Shape", - "doc": "Shape trait for objects that have an area", + "doc": "Shape trait for objects that have an area\n", "signature": "trait Shape", "full_path": "hello_world::Shape" } @@ -181,9 +181,9 @@ { "item_data": { "name": "ShapePair", - "doc": "Type alias for a pair of circles", + "doc": "Type alias for a pair of circles\n", "signature": "type ShapePair = (Circle, Circle);", - "full_path": "hello_world::hello_world::CircleShape::ShapePair" + "full_path": "hello_world::CircleShape::ShapePair" } } ], @@ -191,9 +191,9 @@ { "item_data": { "name": "SHAPE_CONST", - "doc": "Shape constant", + "doc": "Shape constant\n", "signature": "const SHAPE_CONST: felt252 = 'xyz';", - "full_path": "hello_world::hello_world::CircleShape::SHAPE_CONST" + "full_path": "hello_world::CircleShape::SHAPE_CONST" } } ], @@ -201,7 +201,7 @@ { "item_data": { "name": "area", - "doc": "Implementation of the area method for Circle", + "doc": "Implementation of the area method for Circle\n", "signature": "fn area(self: Circle) -> u32", "full_path": "hello_world::CircleShape::area" } @@ -209,7 +209,7 @@ ], "item_data": { "name": "CircleShape", - "doc": "Implementation of the Shape trait for Circle", + "doc": "Implementation of the Shape trait for Circle\n", "signature": "impl CircleShape of Shape", "full_path": "hello_world::CircleShape" } diff --git a/extensions/scarb-doc/tests/data/json_private_items_excluded.json b/extensions/scarb-doc/tests/data/json_private_items_excluded.json index 43c85fc0b..3dd2d6542 100644 --- a/extensions/scarb-doc/tests/data/json_private_items_excluded.json +++ b/extensions/scarb-doc/tests/data/json_private_items_excluded.json @@ -14,7 +14,7 @@ { "item_data": { "name": "PublicParent", - "doc": "Public parent module", + "doc": "Public parent module\n", "signature": null, "full_path": "hello_world::PublicParent" }, @@ -22,7 +22,7 @@ { "item_data": { "name": "PublicChild", - "doc": "Public child module", + "doc": "Public child module\n", "signature": null, "full_path": "hello_world::PublicParent::PublicChild" }, @@ -32,7 +32,7 @@ { "item_data": { "name": "child_public_function", - "doc": "Child public function", + "doc": "Child public function\n", "signature": "pub fn child_public_function()", "full_path": "hello_world::PublicParent::PublicChild::child_public_function" } @@ -40,7 +40,7 @@ { "item_data": { "name": "child_public_crate_function", - "doc": "Child crate public function", + "doc": "Child crate public function\n", "signature": "pub(crate) fn child_public_crate_function()", "full_path": "hello_world::PublicParent::PublicChild::child_public_crate_function" } @@ -51,7 +51,7 @@ "members": [], "item_data": { "name": "PublicChildStructure", - "doc": "Child public struct", + "doc": "Child public struct\n", "signature": null, "full_path": "hello_world::PublicParent::PublicChild::PublicChildStructure" } @@ -60,7 +60,7 @@ "members": [], "item_data": { "name": "PublicCrateChildStructure", - "doc": "Child public crate struct", + "doc": "Child public crate struct\n", "signature": null, "full_path": "hello_world::PublicParent::PublicChild::PublicCrateChildStructure" } @@ -80,7 +80,7 @@ ], "item_data": { "name": "PublicChildEnum", - "doc": "Child public enum", + "doc": "Child public enum\n", "signature": null, "full_path": "hello_world::PublicParent::PublicChild::PublicChildEnum" } @@ -98,7 +98,7 @@ ], "item_data": { "name": "PublicCrateChildEnum", - "doc": "Child public crate enum", + "doc": "Child public crate enum\n", "signature": null, "full_path": "hello_world::PublicParent::PublicChild::PublicCrateChildEnum" } @@ -114,7 +114,7 @@ { "item_data": { "name": "PublicCrateChild", - "doc": "Public crate child module", + "doc": "Public crate child module\n", "signature": null, "full_path": "hello_world::PublicParent::PublicCrateChild" }, @@ -124,7 +124,7 @@ { "item_data": { "name": "child_public_function", - "doc": "Child public function", + "doc": "Child public function\n", "signature": "pub fn child_public_function()", "full_path": "hello_world::PublicParent::PublicCrateChild::child_public_function" } @@ -132,7 +132,7 @@ { "item_data": { "name": "child_public_crate_function", - "doc": "Child crate public function", + "doc": "Child crate public function\n", "signature": "pub(crate) fn child_public_crate_function()", "full_path": "hello_world::PublicParent::PublicCrateChild::child_public_crate_function" } @@ -143,7 +143,7 @@ "members": [], "item_data": { "name": "PublicChildStructure", - "doc": "Child public struct", + "doc": "Child public struct\n", "signature": null, "full_path": "hello_world::PublicParent::PublicCrateChild::PublicChildStructure" } @@ -152,7 +152,7 @@ "members": [], "item_data": { "name": "PublicCrateChildStructure", - "doc": "Child public crate struct", + "doc": "Child public crate struct\n", "signature": null, "full_path": "hello_world::PublicParent::PublicCrateChild::PublicCrateChildStructure" } @@ -172,7 +172,7 @@ ], "item_data": { "name": "PublicChildEnum", - "doc": "Child public enum", + "doc": "Child public enum\n", "signature": null, "full_path": "hello_world::PublicParent::PublicCrateChild::PublicChildEnum" } @@ -190,7 +190,7 @@ ], "item_data": { "name": "PublicCrateChildEnum", - "doc": "Child public crate enum", + "doc": "Child public crate enum\n", "signature": null, "full_path": "hello_world::PublicParent::PublicCrateChild::PublicCrateChildEnum" } @@ -209,7 +209,7 @@ { "item_data": { "name": "parent_public_function", - "doc": "Parent public function", + "doc": "Parent public function\n", "signature": "pub fn parent_public_function()", "full_path": "hello_world::PublicParent::parent_public_function" } @@ -217,7 +217,7 @@ { "item_data": { "name": "parent_public_crate_function", - "doc": "Parent public crate function", + "doc": "Parent public crate function\n", "signature": "pub(crate) fn parent_public_crate_function()", "full_path": "hello_world::PublicParent::parent_public_crate_function" } @@ -228,7 +228,7 @@ "members": [], "item_data": { "name": "PublicParentStructure", - "doc": "Parent public struct", + "doc": "Parent public struct\n", "signature": null, "full_path": "hello_world::PublicParent::PublicParentStructure" } @@ -237,7 +237,7 @@ "members": [], "item_data": { "name": "PublicCrateParentStructure", - "doc": "Parent publi crate struct", + "doc": "Parent publi crate struct\n", "signature": null, "full_path": "hello_world::PublicParent::PublicCrateParentStructure" } @@ -257,7 +257,7 @@ ], "item_data": { "name": "PublicParentEnum", - "doc": "Parent public enum", + "doc": "Parent public enum\n", "signature": null, "full_path": "hello_world::PublicParent::PublicParentEnum" } @@ -275,7 +275,7 @@ ], "item_data": { "name": "PublicCrateParentEnum", - "doc": "Parent public crate enum", + "doc": "Parent public crate enum\n", "signature": null, "full_path": "hello_world::PublicParent::PublicCrateParentEnum" } @@ -291,7 +291,7 @@ { "item_data": { "name": "PublicCrateParent", - "doc": "Public crate parent module", + "doc": "Public crate parent module\n", "signature": null, "full_path": "hello_world::PublicCrateParent" }, @@ -299,7 +299,7 @@ { "item_data": { "name": "PublicChild", - "doc": "Public child module", + "doc": "Public child module\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicChild" }, @@ -309,7 +309,7 @@ { "item_data": { "name": "child_public_function", - "doc": "Child public function", + "doc": "Child public function\n", "signature": "pub fn child_public_function()", "full_path": "hello_world::PublicCrateParent::PublicChild::child_public_function" } @@ -317,7 +317,7 @@ { "item_data": { "name": "child_public_crate_function", - "doc": "Child crate public function", + "doc": "Child crate public function\n", "signature": "pub(crate) fn child_public_crate_function()", "full_path": "hello_world::PublicCrateParent::PublicChild::child_public_crate_function" } @@ -328,7 +328,7 @@ "members": [], "item_data": { "name": "PublicChildStructure", - "doc": "Child public struct", + "doc": "Child public struct\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicChild::PublicChildStructure" } @@ -337,7 +337,7 @@ "members": [], "item_data": { "name": "PublicCrateChildStructure", - "doc": "Child public crate struct", + "doc": "Child public crate struct\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicChild::PublicCrateChildStructure" } @@ -357,7 +357,7 @@ ], "item_data": { "name": "PublicChildEnum", - "doc": "Child public enum", + "doc": "Child public enum\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicChild::PublicChildEnum" } @@ -375,7 +375,7 @@ ], "item_data": { "name": "PublicCrateChildEnum", - "doc": "Child public crate enum", + "doc": "Child public crate enum\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicChild::PublicCrateChildEnum" } @@ -391,7 +391,7 @@ { "item_data": { "name": "PublicCrateChild", - "doc": "Public crate child module", + "doc": "Public crate child module\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicCrateChild" }, @@ -401,7 +401,7 @@ { "item_data": { "name": "child_public_function", - "doc": "Child public function", + "doc": "Child public function\n", "signature": "pub fn child_public_function()", "full_path": "hello_world::PublicCrateParent::PublicCrateChild::child_public_function" } @@ -409,7 +409,7 @@ { "item_data": { "name": "child_public_crate_function", - "doc": "Child crate public function", + "doc": "Child crate public function\n", "signature": "pub(crate) fn child_public_crate_function()", "full_path": "hello_world::PublicCrateParent::PublicCrateChild::child_public_crate_function" } @@ -420,7 +420,7 @@ "members": [], "item_data": { "name": "PublicChildStructure", - "doc": "Child public struct", + "doc": "Child public struct\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicCrateChild::PublicChildStructure" } @@ -429,7 +429,7 @@ "members": [], "item_data": { "name": "PublicCrateChildStructure", - "doc": "Child public crate struct", + "doc": "Child public crate struct\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicCrateChild::PublicCrateChildStructure" } @@ -449,7 +449,7 @@ ], "item_data": { "name": "PublicChildEnum", - "doc": "Child public enum", + "doc": "Child public enum\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicCrateChild::PublicChildEnum" } @@ -467,7 +467,7 @@ ], "item_data": { "name": "PublicCrateChildEnum", - "doc": "Child public crate enum", + "doc": "Child public crate enum\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicCrateChild::PublicCrateChildEnum" } @@ -486,7 +486,7 @@ { "item_data": { "name": "parent_public_function", - "doc": "Parent public function", + "doc": "Parent public function\n", "signature": "pub fn parent_public_function()", "full_path": "hello_world::PublicCrateParent::parent_public_function" } @@ -494,7 +494,7 @@ { "item_data": { "name": "parent_public_crate_function", - "doc": "Parent public crate function", + "doc": "Parent public crate function\n", "signature": "pub(crate) fn parent_public_crate_function()", "full_path": "hello_world::PublicCrateParent::parent_public_crate_function" } @@ -505,7 +505,7 @@ "members": [], "item_data": { "name": "PublicParentStructure", - "doc": "Parent public struct", + "doc": "Parent public struct\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicParentStructure" } @@ -514,7 +514,7 @@ "members": [], "item_data": { "name": "PublicCrateParentStructure", - "doc": "Parent public struct", + "doc": "Parent public struct\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicCrateParentStructure" } @@ -534,7 +534,7 @@ ], "item_data": { "name": "PublicParentEnum", - "doc": "Parent public enum", + "doc": "Parent public enum\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicParentEnum" } @@ -552,7 +552,7 @@ ], "item_data": { "name": "PublicCrateParentEnum", - "doc": "Parent public crate enum", + "doc": "Parent public crate enum\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicCrateParentEnum" } @@ -568,7 +568,7 @@ { "item_data": { "name": "PrivateParent", - "doc": "Private parent module", + "doc": "Private parent module\n", "signature": null, "full_path": "hello_world::PrivateParent" }, @@ -576,7 +576,7 @@ { "item_data": { "name": "PublicChild", - "doc": "Public child module", + "doc": "Public child module\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicChild" }, @@ -586,7 +586,7 @@ { "item_data": { "name": "child_public_function", - "doc": "Child public function", + "doc": "Child public function\n", "signature": "pub fn child_public_function()", "full_path": "hello_world::PrivateParent::PublicChild::child_public_function" } @@ -594,7 +594,7 @@ { "item_data": { "name": "child_public_crate_function", - "doc": "Child crate public function", + "doc": "Child crate public function\n", "signature": "pub(crate) fn child_public_crate_function()", "full_path": "hello_world::PrivateParent::PublicChild::child_public_crate_function" } @@ -605,7 +605,7 @@ "members": [], "item_data": { "name": "PublicChildStructure", - "doc": "Child public struct", + "doc": "Child public struct\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicChild::PublicChildStructure" } @@ -614,7 +614,7 @@ "members": [], "item_data": { "name": "PublicCrateChildStructure", - "doc": "Child public crate struct", + "doc": "Child public crate struct\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicChild::PublicCrateChildStructure" } @@ -634,7 +634,7 @@ ], "item_data": { "name": "PublicChildEnum", - "doc": "Child public enum", + "doc": "Child public enum\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicChild::PublicChildEnum" } @@ -652,7 +652,7 @@ ], "item_data": { "name": "PublicCrateChildEnum", - "doc": "Child public crate enum", + "doc": "Child public crate enum\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicChild::PublicCrateChildEnum" } @@ -668,7 +668,7 @@ { "item_data": { "name": "PublicCrateChild", - "doc": "Public crate child module", + "doc": "Public crate child module\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicCrateChild" }, @@ -678,7 +678,7 @@ { "item_data": { "name": "child_public_function", - "doc": "Child public function", + "doc": "Child public function\n", "signature": "pub fn child_public_function()", "full_path": "hello_world::PrivateParent::PublicCrateChild::child_public_function" } @@ -686,7 +686,7 @@ { "item_data": { "name": "child_public_crate_function", - "doc": "Child crate public function", + "doc": "Child crate public function\n", "signature": "pub(crate) fn child_public_crate_function()", "full_path": "hello_world::PrivateParent::PublicCrateChild::child_public_crate_function" } @@ -697,7 +697,7 @@ "members": [], "item_data": { "name": "PublicChildStructure", - "doc": "Child public struct", + "doc": "Child public struct\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicCrateChild::PublicChildStructure" } @@ -706,7 +706,7 @@ "members": [], "item_data": { "name": "PublicCrateChildStructure", - "doc": "Child public crate struct", + "doc": "Child public crate struct\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicCrateChild::PublicCrateChildStructure" } @@ -726,7 +726,7 @@ ], "item_data": { "name": "PublicChildEnum", - "doc": "Child public enum", + "doc": "Child public enum\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicCrateChild::PublicChildEnum" } @@ -744,7 +744,7 @@ ], "item_data": { "name": "PublicCrateChildEnum", - "doc": "Child public crate enum", + "doc": "Child public crate enum\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicCrateChild::PublicCrateChildEnum" } @@ -763,7 +763,7 @@ { "item_data": { "name": "parent_public_function", - "doc": "Parent public function", + "doc": "Parent public function\n", "signature": "pub fn parent_public_function()", "full_path": "hello_world::PrivateParent::parent_public_function" } @@ -771,7 +771,7 @@ { "item_data": { "name": "parent_public_crate_function", - "doc": "Parent public crate function", + "doc": "Parent public crate function\n", "signature": "pub(crate) fn parent_public_crate_function()", "full_path": "hello_world::PrivateParent::parent_public_crate_function" } @@ -782,7 +782,7 @@ "members": [], "item_data": { "name": "PublicParentStructure", - "doc": "Parent public struct", + "doc": "Parent public struct\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicParentStructure" } @@ -791,7 +791,7 @@ "members": [], "item_data": { "name": "PublicCrateParentStructure", - "doc": "Parent public struct", + "doc": "Parent public struct\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicCrateParentStructure" } @@ -811,7 +811,7 @@ ], "item_data": { "name": "PublicParentEnum", - "doc": "Parent public enum", + "doc": "Parent public enum\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicParentEnum" } @@ -829,7 +829,7 @@ ], "item_data": { "name": "PublicCrateParentEnum", - "doc": "Parent public crate enum", + "doc": "Parent public crate enum\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicCrateParentEnum" } @@ -848,7 +848,7 @@ { "item_data": { "name": "public_function", - "doc": "Public function", + "doc": "Public function\n", "signature": "pub fn public_function()", "full_path": "hello_world::public_function" } @@ -856,7 +856,7 @@ { "item_data": { "name": "public_crate_function", - "doc": "Public crate function", + "doc": "Public crate function\n", "signature": "pub(crate) fn public_crate_function()", "full_path": "hello_world::public_crate_function" } @@ -864,7 +864,7 @@ { "item_data": { "name": "private_function", - "doc": "Private function", + "doc": "Private function\n", "signature": "fn private_function()", "full_path": "hello_world::private_function" } @@ -883,7 +883,7 @@ "members": [], "item_data": { "name": "PublicStructure", - "doc": "Public struct", + "doc": "Public struct\n", "signature": null, "full_path": "hello_world::PublicStructure" } @@ -892,7 +892,7 @@ "members": [], "item_data": { "name": "PublicCrateStructure", - "doc": "Public crate struct", + "doc": "Public crate struct\n", "signature": null, "full_path": "hello_world::PublicCrateStructure" } @@ -901,7 +901,7 @@ "members": [], "item_data": { "name": "PrivateStructure", - "doc": "Private struct", + "doc": "Private struct\n", "signature": null, "full_path": "hello_world::PrivateStructure" } @@ -921,7 +921,7 @@ ], "item_data": { "name": "PublicEnum", - "doc": "Public enum", + "doc": "Public enum\n", "signature": null, "full_path": "hello_world::PublicEnum" } @@ -939,7 +939,7 @@ ], "item_data": { "name": "PublicCrateEnum", - "doc": "Public crate enum", + "doc": "Public crate enum\n", "signature": null, "full_path": "hello_world::PublicCrateEnum" } @@ -957,7 +957,7 @@ ], "item_data": { "name": "PrivateEnum", - "doc": "Private enum", + "doc": "Private enum\n", "signature": null, "full_path": "hello_world::PrivateEnum" } diff --git a/extensions/scarb-doc/tests/data/json_private_items_included.json b/extensions/scarb-doc/tests/data/json_private_items_included.json index 36b349022..f0fe1c0b2 100644 --- a/extensions/scarb-doc/tests/data/json_private_items_included.json +++ b/extensions/scarb-doc/tests/data/json_private_items_included.json @@ -14,7 +14,7 @@ { "item_data": { "name": "PublicParent", - "doc": "Public parent module", + "doc": "Public parent module\n", "signature": null, "full_path": "hello_world::PublicParent" }, @@ -22,7 +22,7 @@ { "item_data": { "name": "PublicChild", - "doc": "Public child module", + "doc": "Public child module\n", "signature": null, "full_path": "hello_world::PublicParent::PublicChild" }, @@ -32,7 +32,7 @@ { "item_data": { "name": "child_public_function", - "doc": "Child public function", + "doc": "Child public function\n", "signature": "pub fn child_public_function()", "full_path": "hello_world::PublicParent::PublicChild::child_public_function" } @@ -40,7 +40,7 @@ { "item_data": { "name": "child_public_crate_function", - "doc": "Child crate public function", + "doc": "Child crate public function\n", "signature": "pub(crate) fn child_public_crate_function()", "full_path": "hello_world::PublicParent::PublicChild::child_public_crate_function" } @@ -48,7 +48,7 @@ { "item_data": { "name": "child_private_function", - "doc": "Child private function", + "doc": "Child private function\n", "signature": "fn child_private_function()", "full_path": "hello_world::PublicParent::PublicChild::child_private_function" } @@ -84,7 +84,7 @@ ], "item_data": { "name": "PublicChildStructure", - "doc": "Child public struct", + "doc": "Child public struct\n", "signature": null, "full_path": "hello_world::PublicParent::PublicChild::PublicChildStructure" } @@ -118,7 +118,7 @@ ], "item_data": { "name": "PublicCrateChildStructure", - "doc": "Child public crate struct", + "doc": "Child public crate struct\n", "signature": null, "full_path": "hello_world::PublicParent::PublicChild::PublicCrateChildStructure" } @@ -152,7 +152,7 @@ ], "item_data": { "name": "PrivateChildStructure", - "doc": "Child private struct", + "doc": "Child private struct\n", "signature": null, "full_path": "hello_world::PublicParent::PublicChild::PrivateChildStructure" } @@ -172,7 +172,7 @@ ], "item_data": { "name": "PublicChildEnum", - "doc": "Child public enum", + "doc": "Child public enum\n", "signature": null, "full_path": "hello_world::PublicParent::PublicChild::PublicChildEnum" } @@ -190,7 +190,7 @@ ], "item_data": { "name": "PublicCrateChildEnum", - "doc": "Child public crate enum", + "doc": "Child public crate enum\n", "signature": null, "full_path": "hello_world::PublicParent::PublicChild::PublicCrateChildEnum" } @@ -208,7 +208,7 @@ ], "item_data": { "name": "PrivateChildEnum", - "doc": "Child private enum", + "doc": "Child private enum\n", "signature": null, "full_path": "hello_world::PublicParent::PublicChild::PrivateChildEnum" } @@ -224,7 +224,7 @@ { "item_data": { "name": "PublicCrateChild", - "doc": "Public crate child module", + "doc": "Public crate child module\n", "signature": null, "full_path": "hello_world::PublicParent::PublicCrateChild" }, @@ -234,7 +234,7 @@ { "item_data": { "name": "child_public_function", - "doc": "Child public function", + "doc": "Child public function\n", "signature": "pub fn child_public_function()", "full_path": "hello_world::PublicParent::PublicCrateChild::child_public_function" } @@ -242,7 +242,7 @@ { "item_data": { "name": "child_public_crate_function", - "doc": "Child crate public function", + "doc": "Child crate public function\n", "signature": "pub(crate) fn child_public_crate_function()", "full_path": "hello_world::PublicParent::PublicCrateChild::child_public_crate_function" } @@ -250,7 +250,7 @@ { "item_data": { "name": "child_private_function", - "doc": "Child private function", + "doc": "Child private function\n", "signature": "fn child_private_function()", "full_path": "hello_world::PublicParent::PublicCrateChild::child_private_function" } @@ -286,7 +286,7 @@ ], "item_data": { "name": "PublicChildStructure", - "doc": "Child public struct", + "doc": "Child public struct\n", "signature": null, "full_path": "hello_world::PublicParent::PublicCrateChild::PublicChildStructure" } @@ -320,7 +320,7 @@ ], "item_data": { "name": "PublicCrateChildStructure", - "doc": "Child public crate struct", + "doc": "Child public crate struct\n", "signature": null, "full_path": "hello_world::PublicParent::PublicCrateChild::PublicCrateChildStructure" } @@ -354,7 +354,7 @@ ], "item_data": { "name": "PrivateChildStructure", - "doc": "Child private struct", + "doc": "Child private struct\n", "signature": null, "full_path": "hello_world::PublicParent::PublicCrateChild::PrivateChildStructure" } @@ -374,7 +374,7 @@ ], "item_data": { "name": "PublicChildEnum", - "doc": "Child public enum", + "doc": "Child public enum\n", "signature": null, "full_path": "hello_world::PublicParent::PublicCrateChild::PublicChildEnum" } @@ -392,7 +392,7 @@ ], "item_data": { "name": "PublicCrateChildEnum", - "doc": "Child public crate enum", + "doc": "Child public crate enum\n", "signature": null, "full_path": "hello_world::PublicParent::PublicCrateChild::PublicCrateChildEnum" } @@ -410,7 +410,7 @@ ], "item_data": { "name": "PrivateChildEnum", - "doc": "Child private enum", + "doc": "Child private enum\n", "signature": null, "full_path": "hello_world::PublicParent::PublicCrateChild::PrivateChildEnum" } @@ -426,7 +426,7 @@ { "item_data": { "name": "PrivateChild", - "doc": "Private child module", + "doc": "Private child module\n", "signature": null, "full_path": "hello_world::PublicParent::PrivateChild" }, @@ -436,7 +436,7 @@ { "item_data": { "name": "child_public_function", - "doc": "Child public function", + "doc": "Child public function\n", "signature": "pub fn child_public_function()", "full_path": "hello_world::PublicParent::PrivateChild::child_public_function" } @@ -444,7 +444,7 @@ { "item_data": { "name": "child_public_crate_function", - "doc": "Child crate public function", + "doc": "Child crate public function\n", "signature": "pub(crate) fn child_public_crate_function()", "full_path": "hello_world::PublicParent::PrivateChild::child_public_crate_function" } @@ -452,7 +452,7 @@ { "item_data": { "name": "child_private_function", - "doc": "Child private function", + "doc": "Child private function\n", "signature": "fn child_private_function()", "full_path": "hello_world::PublicParent::PrivateChild::child_private_function" } @@ -488,7 +488,7 @@ ], "item_data": { "name": "PublicChildStructure", - "doc": "Child public struct", + "doc": "Child public struct\n", "signature": null, "full_path": "hello_world::PublicParent::PrivateChild::PublicChildStructure" } @@ -522,7 +522,7 @@ ], "item_data": { "name": "PublicCrateChildStructure", - "doc": "Child public crate struct", + "doc": "Child public crate struct\n", "signature": null, "full_path": "hello_world::PublicParent::PrivateChild::PublicCrateChildStructure" } @@ -556,7 +556,7 @@ ], "item_data": { "name": "PrivateChildStructure", - "doc": "Child private struct", + "doc": "Child private struct\n", "signature": null, "full_path": "hello_world::PublicParent::PrivateChild::PrivateChildStructure" } @@ -576,7 +576,7 @@ ], "item_data": { "name": "PublicChildEnum", - "doc": "Child public enum", + "doc": "Child public enum\n", "signature": null, "full_path": "hello_world::PublicParent::PrivateChild::PublicChildEnum" } @@ -594,7 +594,7 @@ ], "item_data": { "name": "PublicCrateChildEnum", - "doc": "Child public crate enum", + "doc": "Child public crate enum\n", "signature": null, "full_path": "hello_world::PublicParent::PrivateChild::PublicCrateChildEnum" } @@ -612,7 +612,7 @@ ], "item_data": { "name": "PrivateChildEnum", - "doc": "Child private enum", + "doc": "Child private enum\n", "signature": null, "full_path": "hello_world::PublicParent::PrivateChild::PrivateChildEnum" } @@ -631,7 +631,7 @@ { "item_data": { "name": "parent_public_function", - "doc": "Parent public function", + "doc": "Parent public function\n", "signature": "pub fn parent_public_function()", "full_path": "hello_world::PublicParent::parent_public_function" } @@ -639,7 +639,7 @@ { "item_data": { "name": "parent_public_crate_function", - "doc": "Parent public crate function", + "doc": "Parent public crate function\n", "signature": "pub(crate) fn parent_public_crate_function()", "full_path": "hello_world::PublicParent::parent_public_crate_function" } @@ -647,7 +647,7 @@ { "item_data": { "name": "parent_private_function", - "doc": "Parent private function", + "doc": "Parent private function\n", "signature": "fn parent_private_function()", "full_path": "hello_world::PublicParent::parent_private_function" } @@ -683,7 +683,7 @@ ], "item_data": { "name": "PublicParentStructure", - "doc": "Parent public struct", + "doc": "Parent public struct\n", "signature": null, "full_path": "hello_world::PublicParent::PublicParentStructure" } @@ -717,7 +717,7 @@ ], "item_data": { "name": "PublicCrateParentStructure", - "doc": "Parent publi crate struct", + "doc": "Parent publi crate struct\n", "signature": null, "full_path": "hello_world::PublicParent::PublicCrateParentStructure" } @@ -751,7 +751,7 @@ ], "item_data": { "name": "PrivateParentStructure", - "doc": "Parent private struct", + "doc": "Parent private struct\n", "signature": null, "full_path": "hello_world::PublicParent::PrivateParentStructure" } @@ -771,7 +771,7 @@ ], "item_data": { "name": "PublicParentEnum", - "doc": "Parent public enum", + "doc": "Parent public enum\n", "signature": null, "full_path": "hello_world::PublicParent::PublicParentEnum" } @@ -789,7 +789,7 @@ ], "item_data": { "name": "PublicCrateParentEnum", - "doc": "Parent public crate enum", + "doc": "Parent public crate enum\n", "signature": null, "full_path": "hello_world::PublicParent::PublicCrateParentEnum" } @@ -807,7 +807,7 @@ ], "item_data": { "name": "PrivateParentEnum", - "doc": "Parent private enum", + "doc": "Parent private enum\n", "signature": null, "full_path": "hello_world::PublicParent::PrivateParentEnum" } @@ -823,7 +823,7 @@ { "item_data": { "name": "PublicCrateParent", - "doc": "Public crate parent module", + "doc": "Public crate parent module\n", "signature": null, "full_path": "hello_world::PublicCrateParent" }, @@ -831,7 +831,7 @@ { "item_data": { "name": "PublicChild", - "doc": "Public child module", + "doc": "Public child module\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicChild" }, @@ -841,7 +841,7 @@ { "item_data": { "name": "child_public_function", - "doc": "Child public function", + "doc": "Child public function\n", "signature": "pub fn child_public_function()", "full_path": "hello_world::PublicCrateParent::PublicChild::child_public_function" } @@ -849,7 +849,7 @@ { "item_data": { "name": "child_public_crate_function", - "doc": "Child crate public function", + "doc": "Child crate public function\n", "signature": "pub(crate) fn child_public_crate_function()", "full_path": "hello_world::PublicCrateParent::PublicChild::child_public_crate_function" } @@ -857,7 +857,7 @@ { "item_data": { "name": "child_private_function", - "doc": "Child private function", + "doc": "Child private function\n", "signature": "fn child_private_function()", "full_path": "hello_world::PublicCrateParent::PublicChild::child_private_function" } @@ -893,7 +893,7 @@ ], "item_data": { "name": "PublicChildStructure", - "doc": "Child public struct", + "doc": "Child public struct\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicChild::PublicChildStructure" } @@ -927,7 +927,7 @@ ], "item_data": { "name": "PublicCrateChildStructure", - "doc": "Child public crate struct", + "doc": "Child public crate struct\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicChild::PublicCrateChildStructure" } @@ -961,7 +961,7 @@ ], "item_data": { "name": "PrivateChildStructure", - "doc": "Child private struct", + "doc": "Child private struct\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicChild::PrivateChildStructure" } @@ -981,7 +981,7 @@ ], "item_data": { "name": "PublicChildEnum", - "doc": "Child public enum", + "doc": "Child public enum\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicChild::PublicChildEnum" } @@ -999,7 +999,7 @@ ], "item_data": { "name": "PublicCrateChildEnum", - "doc": "Child public crate enum", + "doc": "Child public crate enum\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicChild::PublicCrateChildEnum" } @@ -1017,7 +1017,7 @@ ], "item_data": { "name": "PrivateChildEnum", - "doc": "Child private enum", + "doc": "Child private enum\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicChild::PrivateChildEnum" } @@ -1033,7 +1033,7 @@ { "item_data": { "name": "PublicCrateChild", - "doc": "Public crate child module", + "doc": "Public crate child module\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicCrateChild" }, @@ -1043,7 +1043,7 @@ { "item_data": { "name": "child_public_function", - "doc": "Child public function", + "doc": "Child public function\n", "signature": "pub fn child_public_function()", "full_path": "hello_world::PublicCrateParent::PublicCrateChild::child_public_function" } @@ -1051,7 +1051,7 @@ { "item_data": { "name": "child_public_crate_function", - "doc": "Child crate public function", + "doc": "Child crate public function\n", "signature": "pub(crate) fn child_public_crate_function()", "full_path": "hello_world::PublicCrateParent::PublicCrateChild::child_public_crate_function" } @@ -1059,7 +1059,7 @@ { "item_data": { "name": "child_private_function", - "doc": "Child private function", + "doc": "Child private function\n", "signature": "fn child_private_function()", "full_path": "hello_world::PublicCrateParent::PublicCrateChild::child_private_function" } @@ -1095,7 +1095,7 @@ ], "item_data": { "name": "PublicChildStructure", - "doc": "Child public struct", + "doc": "Child public struct\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicCrateChild::PublicChildStructure" } @@ -1129,7 +1129,7 @@ ], "item_data": { "name": "PublicCrateChildStructure", - "doc": "Child public crate struct", + "doc": "Child public crate struct\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicCrateChild::PublicCrateChildStructure" } @@ -1163,7 +1163,7 @@ ], "item_data": { "name": "PrivateChildStructure", - "doc": "Child private struct", + "doc": "Child private struct\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicCrateChild::PrivateChildStructure" } @@ -1183,7 +1183,7 @@ ], "item_data": { "name": "PublicChildEnum", - "doc": "Child public enum", + "doc": "Child public enum\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicCrateChild::PublicChildEnum" } @@ -1201,7 +1201,7 @@ ], "item_data": { "name": "PublicCrateChildEnum", - "doc": "Child public crate enum", + "doc": "Child public crate enum\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicCrateChild::PublicCrateChildEnum" } @@ -1219,7 +1219,7 @@ ], "item_data": { "name": "PrivateChildEnum", - "doc": "Child private enum", + "doc": "Child private enum\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicCrateChild::PrivateChildEnum" } @@ -1235,7 +1235,7 @@ { "item_data": { "name": "PrivateChild", - "doc": "Private child module", + "doc": "Private child module\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PrivateChild" }, @@ -1245,7 +1245,7 @@ { "item_data": { "name": "child_public_function", - "doc": "Child public function", + "doc": "Child public function\n", "signature": "pub fn child_public_function()", "full_path": "hello_world::PublicCrateParent::PrivateChild::child_public_function" } @@ -1253,7 +1253,7 @@ { "item_data": { "name": "child_public_crate_function", - "doc": "Child crate public function", + "doc": "Child crate public function\n", "signature": "pub(crate) fn child_public_crate_function()", "full_path": "hello_world::PublicCrateParent::PrivateChild::child_public_crate_function" } @@ -1261,7 +1261,7 @@ { "item_data": { "name": "child_private_function", - "doc": "Child private function", + "doc": "Child private function\n", "signature": "fn child_private_function()", "full_path": "hello_world::PublicCrateParent::PrivateChild::child_private_function" } @@ -1297,7 +1297,7 @@ ], "item_data": { "name": "PublicChildStructure", - "doc": "Child public struct", + "doc": "Child public struct\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PrivateChild::PublicChildStructure" } @@ -1331,7 +1331,7 @@ ], "item_data": { "name": "PublicCrateChildStructure", - "doc": "Child public crate struct", + "doc": "Child public crate struct\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PrivateChild::PublicCrateChildStructure" } @@ -1365,7 +1365,7 @@ ], "item_data": { "name": "PrivateChildStructure", - "doc": "Child private struct", + "doc": "Child private struct\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PrivateChild::PrivateChildStructure" } @@ -1385,7 +1385,7 @@ ], "item_data": { "name": "PublicChildEnum", - "doc": "Child public enum", + "doc": "Child public enum\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PrivateChild::PublicChildEnum" } @@ -1403,7 +1403,7 @@ ], "item_data": { "name": "PublicCrateChildEnum", - "doc": "Child public crate enum", + "doc": "Child public crate enum\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PrivateChild::PublicCrateChildEnum" } @@ -1421,7 +1421,7 @@ ], "item_data": { "name": "PrivateChildEnum", - "doc": "Child private enum", + "doc": "Child private enum\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PrivateChild::PrivateChildEnum" } @@ -1440,7 +1440,7 @@ { "item_data": { "name": "parent_public_function", - "doc": "Parent public function", + "doc": "Parent public function\n", "signature": "pub fn parent_public_function()", "full_path": "hello_world::PublicCrateParent::parent_public_function" } @@ -1448,7 +1448,7 @@ { "item_data": { "name": "parent_public_crate_function", - "doc": "Parent public crate function", + "doc": "Parent public crate function\n", "signature": "pub(crate) fn parent_public_crate_function()", "full_path": "hello_world::PublicCrateParent::parent_public_crate_function" } @@ -1456,7 +1456,7 @@ { "item_data": { "name": "parent_private_function", - "doc": "Parent private function", + "doc": "Parent private function\n", "signature": "fn parent_private_function()", "full_path": "hello_world::PublicCrateParent::parent_private_function" } @@ -1492,7 +1492,7 @@ ], "item_data": { "name": "PublicParentStructure", - "doc": "Parent public struct", + "doc": "Parent public struct\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicParentStructure" } @@ -1526,7 +1526,7 @@ ], "item_data": { "name": "PublicCrateParentStructure", - "doc": "Parent public struct", + "doc": "Parent public struct\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicCrateParentStructure" } @@ -1560,7 +1560,7 @@ ], "item_data": { "name": "PrivateParentStructure", - "doc": "Parent private struct", + "doc": "Parent private struct\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PrivateParentStructure" } @@ -1580,7 +1580,7 @@ ], "item_data": { "name": "PublicParentEnum", - "doc": "Parent public enum", + "doc": "Parent public enum\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicParentEnum" } @@ -1598,7 +1598,7 @@ ], "item_data": { "name": "PublicCrateParentEnum", - "doc": "Parent public crate enum", + "doc": "Parent public crate enum\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PublicCrateParentEnum" } @@ -1616,7 +1616,7 @@ ], "item_data": { "name": "PrivateParentEnum", - "doc": "Parent private enum", + "doc": "Parent private enum\n", "signature": null, "full_path": "hello_world::PublicCrateParent::PrivateParentEnum" } @@ -1632,7 +1632,7 @@ { "item_data": { "name": "PrivateParent", - "doc": "Private parent module", + "doc": "Private parent module\n", "signature": null, "full_path": "hello_world::PrivateParent" }, @@ -1640,7 +1640,7 @@ { "item_data": { "name": "PublicChild", - "doc": "Public child module", + "doc": "Public child module\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicChild" }, @@ -1650,7 +1650,7 @@ { "item_data": { "name": "child_public_function", - "doc": "Child public function", + "doc": "Child public function\n", "signature": "pub fn child_public_function()", "full_path": "hello_world::PrivateParent::PublicChild::child_public_function" } @@ -1658,7 +1658,7 @@ { "item_data": { "name": "child_public_crate_function", - "doc": "Child crate public function", + "doc": "Child crate public function\n", "signature": "pub(crate) fn child_public_crate_function()", "full_path": "hello_world::PrivateParent::PublicChild::child_public_crate_function" } @@ -1666,7 +1666,7 @@ { "item_data": { "name": "child_private_function", - "doc": "Child private function", + "doc": "Child private function\n", "signature": "fn child_private_function()", "full_path": "hello_world::PrivateParent::PublicChild::child_private_function" } @@ -1702,7 +1702,7 @@ ], "item_data": { "name": "PublicChildStructure", - "doc": "Child public struct", + "doc": "Child public struct\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicChild::PublicChildStructure" } @@ -1736,7 +1736,7 @@ ], "item_data": { "name": "PublicCrateChildStructure", - "doc": "Child public crate struct", + "doc": "Child public crate struct\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicChild::PublicCrateChildStructure" } @@ -1770,7 +1770,7 @@ ], "item_data": { "name": "PrivateChildStructure", - "doc": "Child private struct", + "doc": "Child private struct\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicChild::PrivateChildStructure" } @@ -1790,7 +1790,7 @@ ], "item_data": { "name": "PublicChildEnum", - "doc": "Child public enum", + "doc": "Child public enum\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicChild::PublicChildEnum" } @@ -1808,7 +1808,7 @@ ], "item_data": { "name": "PublicCrateChildEnum", - "doc": "Child public crate enum", + "doc": "Child public crate enum\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicChild::PublicCrateChildEnum" } @@ -1826,7 +1826,7 @@ ], "item_data": { "name": "PrivateChildEnum", - "doc": "Child private enum", + "doc": "Child private enum\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicChild::PrivateChildEnum" } @@ -1842,7 +1842,7 @@ { "item_data": { "name": "PublicCrateChild", - "doc": "Public crate child module", + "doc": "Public crate child module\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicCrateChild" }, @@ -1852,7 +1852,7 @@ { "item_data": { "name": "child_public_function", - "doc": "Child public function", + "doc": "Child public function\n", "signature": "pub fn child_public_function()", "full_path": "hello_world::PrivateParent::PublicCrateChild::child_public_function" } @@ -1860,7 +1860,7 @@ { "item_data": { "name": "child_public_crate_function", - "doc": "Child crate public function", + "doc": "Child crate public function\n", "signature": "pub(crate) fn child_public_crate_function()", "full_path": "hello_world::PrivateParent::PublicCrateChild::child_public_crate_function" } @@ -1868,7 +1868,7 @@ { "item_data": { "name": "child_private_function", - "doc": "Child private function", + "doc": "Child private function\n", "signature": "fn child_private_function()", "full_path": "hello_world::PrivateParent::PublicCrateChild::child_private_function" } @@ -1904,7 +1904,7 @@ ], "item_data": { "name": "PublicChildStructure", - "doc": "Child public struct", + "doc": "Child public struct\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicCrateChild::PublicChildStructure" } @@ -1938,7 +1938,7 @@ ], "item_data": { "name": "PublicCrateChildStructure", - "doc": "Child public crate struct", + "doc": "Child public crate struct\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicCrateChild::PublicCrateChildStructure" } @@ -1972,7 +1972,7 @@ ], "item_data": { "name": "PrivateChildStructure", - "doc": "Child private struct", + "doc": "Child private struct\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicCrateChild::PrivateChildStructure" } @@ -1992,7 +1992,7 @@ ], "item_data": { "name": "PublicChildEnum", - "doc": "Child public enum", + "doc": "Child public enum\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicCrateChild::PublicChildEnum" } @@ -2010,7 +2010,7 @@ ], "item_data": { "name": "PublicCrateChildEnum", - "doc": "Child public crate enum", + "doc": "Child public crate enum\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicCrateChild::PublicCrateChildEnum" } @@ -2028,7 +2028,7 @@ ], "item_data": { "name": "PrivateChildEnum", - "doc": "Child private enum", + "doc": "Child private enum\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicCrateChild::PrivateChildEnum" } @@ -2044,7 +2044,7 @@ { "item_data": { "name": "PrivateChild", - "doc": "Private child module", + "doc": "Private child module\n", "signature": null, "full_path": "hello_world::PrivateParent::PrivateChild" }, @@ -2054,7 +2054,7 @@ { "item_data": { "name": "child_public_function", - "doc": "Child public function", + "doc": "Child public function\n", "signature": "pub fn child_public_function()", "full_path": "hello_world::PrivateParent::PrivateChild::child_public_function" } @@ -2062,7 +2062,7 @@ { "item_data": { "name": "child_public_crate_function", - "doc": "Child crate public function", + "doc": "Child crate public function\n", "signature": "pub(crate) fn child_public_crate_function()", "full_path": "hello_world::PrivateParent::PrivateChild::child_public_crate_function" } @@ -2070,7 +2070,7 @@ { "item_data": { "name": "child_private_function", - "doc": "Child private function", + "doc": "Child private function\n", "signature": "fn child_private_function()", "full_path": "hello_world::PrivateParent::PrivateChild::child_private_function" } @@ -2106,7 +2106,7 @@ ], "item_data": { "name": "PublicChildStructure", - "doc": "Child public struct", + "doc": "Child public struct\n", "signature": null, "full_path": "hello_world::PrivateParent::PrivateChild::PublicChildStructure" } @@ -2140,7 +2140,7 @@ ], "item_data": { "name": "PublicCrateChildStructure", - "doc": "Child public crate struct", + "doc": "Child public crate struct\n", "signature": null, "full_path": "hello_world::PrivateParent::PrivateChild::PublicCrateChildStructure" } @@ -2174,7 +2174,7 @@ ], "item_data": { "name": "PrivateChildStructure", - "doc": "Child private struct", + "doc": "Child private struct\n", "signature": null, "full_path": "hello_world::PrivateParent::PrivateChild::PrivateChildStructure" } @@ -2194,7 +2194,7 @@ ], "item_data": { "name": "PublicChildEnum", - "doc": "Child public enum", + "doc": "Child public enum\n", "signature": null, "full_path": "hello_world::PrivateParent::PrivateChild::PublicChildEnum" } @@ -2212,7 +2212,7 @@ ], "item_data": { "name": "PublicCrateChildEnum", - "doc": "Child public crate enum", + "doc": "Child public crate enum\n", "signature": null, "full_path": "hello_world::PrivateParent::PrivateChild::PublicCrateChildEnum" } @@ -2230,7 +2230,7 @@ ], "item_data": { "name": "PrivateChildEnum", - "doc": "Child private enum", + "doc": "Child private enum\n", "signature": null, "full_path": "hello_world::PrivateParent::PrivateChild::PrivateChildEnum" } @@ -2249,7 +2249,7 @@ { "item_data": { "name": "parent_public_function", - "doc": "Parent public function", + "doc": "Parent public function\n", "signature": "pub fn parent_public_function()", "full_path": "hello_world::PrivateParent::parent_public_function" } @@ -2257,7 +2257,7 @@ { "item_data": { "name": "parent_public_crate_function", - "doc": "Parent public crate function", + "doc": "Parent public crate function\n", "signature": "pub(crate) fn parent_public_crate_function()", "full_path": "hello_world::PrivateParent::parent_public_crate_function" } @@ -2265,7 +2265,7 @@ { "item_data": { "name": "parent_private_function", - "doc": "Parent private function", + "doc": "Parent private function\n", "signature": "fn parent_private_function()", "full_path": "hello_world::PrivateParent::parent_private_function" } @@ -2301,7 +2301,7 @@ ], "item_data": { "name": "PublicParentStructure", - "doc": "Parent public struct", + "doc": "Parent public struct\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicParentStructure" } @@ -2335,7 +2335,7 @@ ], "item_data": { "name": "PublicCrateParentStructure", - "doc": "Parent public struct", + "doc": "Parent public struct\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicCrateParentStructure" } @@ -2369,7 +2369,7 @@ ], "item_data": { "name": "PrivateParentStructure", - "doc": "Parent private struct", + "doc": "Parent private struct\n", "signature": null, "full_path": "hello_world::PrivateParent::PrivateParentStructure" } @@ -2389,7 +2389,7 @@ ], "item_data": { "name": "PublicParentEnum", - "doc": "Parent public enum", + "doc": "Parent public enum\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicParentEnum" } @@ -2407,7 +2407,7 @@ ], "item_data": { "name": "PublicCrateParentEnum", - "doc": "Parent public crate enum", + "doc": "Parent public crate enum\n", "signature": null, "full_path": "hello_world::PrivateParent::PublicCrateParentEnum" } @@ -2425,7 +2425,7 @@ ], "item_data": { "name": "PrivateParentEnum", - "doc": "Parent private enum", + "doc": "Parent private enum\n", "signature": null, "full_path": "hello_world::PrivateParent::PrivateParentEnum" } @@ -2444,7 +2444,7 @@ { "item_data": { "name": "public_function", - "doc": "Public function", + "doc": "Public function\n", "signature": "pub fn public_function()", "full_path": "hello_world::public_function" } @@ -2452,7 +2452,7 @@ { "item_data": { "name": "public_crate_function", - "doc": "Public crate function", + "doc": "Public crate function\n", "signature": "pub(crate) fn public_crate_function()", "full_path": "hello_world::public_crate_function" } @@ -2460,7 +2460,7 @@ { "item_data": { "name": "private_function", - "doc": "Private function", + "doc": "Private function\n", "signature": "fn private_function()", "full_path": "hello_world::private_function" } @@ -2504,7 +2504,7 @@ ], "item_data": { "name": "PublicStructure", - "doc": "Public struct", + "doc": "Public struct\n", "signature": null, "full_path": "hello_world::PublicStructure" } @@ -2538,7 +2538,7 @@ ], "item_data": { "name": "PublicCrateStructure", - "doc": "Public crate struct", + "doc": "Public crate struct\n", "signature": null, "full_path": "hello_world::PublicCrateStructure" } @@ -2572,7 +2572,7 @@ ], "item_data": { "name": "PrivateStructure", - "doc": "Private struct", + "doc": "Private struct\n", "signature": null, "full_path": "hello_world::PrivateStructure" } @@ -2592,7 +2592,7 @@ ], "item_data": { "name": "PublicEnum", - "doc": "Public enum", + "doc": "Public enum\n", "signature": null, "full_path": "hello_world::PublicEnum" } @@ -2610,7 +2610,7 @@ ], "item_data": { "name": "PublicCrateEnum", - "doc": "Public crate enum", + "doc": "Public crate enum\n", "signature": null, "full_path": "hello_world::PublicCrateEnum" } @@ -2628,7 +2628,7 @@ ], "item_data": { "name": "PrivateEnum", - "doc": "Private enum", + "doc": "Private enum\n", "signature": null, "full_path": "hello_world::PrivateEnum" }