= ViewBuilder::element("a")
[INFO] [stdout] | ^^^^^^^^^^^ use of undeclared type `ViewBuilder`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0433]: failed to resolve: use of undeclared type `ViewBuilder`
[INFO] [stdout] --> tests/integration_test.rs:41:21
[INFO] [stdout] |
[INFO] [stdout] 41 | .with_child(ViewBuilder::text("a text node"));
[INFO] [stdout] | ^^^^^^^^^^^ use of undeclared type `ViewBuilder`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0433]: failed to resolve: use of undeclared type `View`
[INFO] [stdout] --> tests/integration_test.rs:44:22
[INFO] [stdout] |
[INFO] [stdout] 44 | String::from(View::try_from(builder).unwrap())
[INFO] [stdout] | ^^^^ use of undeclared type `View`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0433]: failed to resolve: use of undeclared crate or module `mogwai`
[INFO] [stdout] --> tests/integration_test.rs:50:23
[INFO] [stdout] |
[INFO] [stdout] 50 | let div: String = view! {
[INFO] [stdout] | _______________________^
[INFO] [stdout] 51 | | "a text node"
[INFO] [stdout] 52 | | }
[INFO] [stdout] | |_____^ use of undeclared crate or module `mogwai`
[INFO] [stdout] |
[INFO] [stdout] = note: this error originates in the macro `view` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0433]: failed to resolve: use of undeclared crate or module `mogwai`
[INFO] [stdout] --> tests/integration_test.rs:63:21
[INFO] [stdout] |
[INFO] [stdout] 63 | let s: String = view! {
[INFO] [stdout] | _____________________^
[INFO] [stdout] 64 | | "just a string with the number" {format!("{}", x)} "<- blah blah"
[INFO] [stdout] 65 | | }
[INFO] [stdout] | |_____^ use of undeclared crate or module `mogwai`
[INFO] [stdout] |
[INFO] [stdout] = note: this error originates in the macro `view` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0433]: failed to resolve: use of undeclared crate or module `mogwai`
[INFO] [stdout] --> tests/integration_test.rs:77:21
[INFO] [stdout] |
[INFO] [stdout] 77 | let s: String = view! {
[INFO] [stdout] | _____________________^
[INFO] [stdout] 78 | | "just a string with the number" {format!("{}", x)}
[INFO] [stdout] 79 | | }
[INFO] [stdout] | |_____^ use of undeclared crate or module `mogwai`
[INFO] [stdout] |
[INFO] [stdout] = note: this error originates in the macro `view` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0433]: failed to resolve: use of undeclared crate or module `mogwai`
[INFO] [stdout] --> tests/integration_test.rs:87:21
[INFO] [stdout] |
[INFO] [stdout] 87 | let s: String = view! {
[INFO] [stdout] | _____________________^
[INFO] [stdout] 88 | | "this is text <- text"
[INFO] [stdout] 89 | | }
[INFO] [stdout] | |_____^ use of undeclared crate or module `mogwai`
[INFO] [stdout] |
[INFO] [stdout] = note: this error originates in the macro `view` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0433]: failed to resolve: use of undeclared crate or module `mogwai`
[INFO] [stdout] --> tests/integration_test.rs:97:21
[INFO] [stdout] |
[INFO] [stdout] 97 | let _: String = view! {
[INFO] [stdout] | _____________________^
[INFO] [stdout] 98 | |
[INFO] [stdout] 101 | | "A string"
[INFO] [stdout] 102 | |
[INFO] [stdout] 103 | | }
[INFO] [stdout] | |_____^ use of undeclared crate or module `mogwai`
[INFO] [stdout] |
[INFO] [stdout] = note: this error originates in the macro `view` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0433]: failed to resolve: use of undeclared crate or module `broadcast`
[INFO] [stdout] --> tests/integration_test.rs:109:21
[INFO] [stdout] |
[INFO] [stdout] 109 | let (_tx, rx) = broadcast::bounded::(1);
[INFO] [stdout] | ^^^^^^^^^ use of undeclared crate or module `broadcast`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0433]: failed to resolve: use of undeclared crate or module `mogwai`
[INFO] [stdout] --> tests/integration_test.rs:132:22
[INFO] [stdout] |
[INFO] [stdout] 132 | Some(builder! {
})
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ use of undeclared crate or module `mogwai`
[INFO] [stdout] |
[INFO] [stdout] = note: this error originates in the macro `builder` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0433]: failed to resolve: use of undeclared crate or module `mogwai`
[INFO] [stdout] --> tests/integration_test.rs:137:5
[INFO] [stdout] |
[INFO] [stdout] 137 | / builder! {
[INFO] [stdout] 138 | |
[INFO] [stdout] 139 | | -
[INFO] [stdout] 140 | | " Home"
[INFO] [stdout] ... |
[INFO] [stdout] 160 | |
[INFO] [stdout] 161 | | }
[INFO] [stdout] | |_____^ use of undeclared crate or module `mogwai`
[INFO] [stdout] |
[INFO] [stdout] = note: this error originates in the macro `builder` (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0412]: cannot find type `DecomposedViewBuilder` in this scope
[INFO] [stdout] --> tests/integration_test.rs:25:17
[INFO] [stdout] |
[INFO] [stdout] 25 | let decomp: DecomposedViewBuilder = builder! {}.into();
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^ not found in this scope
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0412]: cannot find type `Dom` in this scope
[INFO] [stdout] --> tests/integration_test.rs:25:39
[INFO] [stdout] |
[INFO] [stdout] 24 | fn node_self_closing_gt_1_att() {
[INFO] [stdout] | - help: you might be missing a type parameter: ``
[INFO] [stdout] 25 | let decomp: DecomposedViewBuilder = builder! {}.into();
[INFO] [stdout] | ^^^ not found in this scope
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0412]: cannot find type `ViewBuilder` in this scope
[INFO] [stdout] --> tests/integration_test.rs:38:18
[INFO] [stdout] |
[INFO] [stdout] 38 | let builder: ViewBuilder = ViewBuilder::element("a")
[INFO] [stdout] | ^^^^^^^^^^^ not found in this scope
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0412]: cannot find type `Dom` in this scope
[INFO] [stdout] --> tests/integration_test.rs:38:30
[INFO] [stdout] |
[INFO] [stdout] 37 | fn by_hand() {
[INFO] [stdout] | - help: you might be missing a type parameter: ``
[INFO] [stdout] 38 | let builder: ViewBuilder = ViewBuilder::element("a")
[INFO] [stdout] | ^^^ not found in this scope
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0405]: cannot find trait `Streamable` in this scope
[INFO] [stdout] --> tests/integration_test.rs:120:22
[INFO] [stdout] |
[INFO] [stdout] 120 | home_class: impl Streamable,
[INFO] [stdout] | ^^^^^^^^^^ not found in this scope
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0405]: cannot find trait `Streamable` in this scope
[INFO] [stdout] --> tests/integration_test.rs:121:24
[INFO] [stdout] |
[INFO] [stdout] 121 | editor_class: impl Streamable,
[INFO] [stdout] | ^^^^^^^^^^ not found in this scope
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0405]: cannot find trait `Streamable` in this scope
[INFO] [stdout] --> tests/integration_test.rs:122:26
[INFO] [stdout] |
[INFO] [stdout] 122 | settings_class: impl Streamable,
[INFO] [stdout] | ^^^^^^^^^^ not found in this scope
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0405]: cannot find trait `Streamable` in this scope
[INFO] [stdout] --> tests/integration_test.rs:123:25
[INFO] [stdout] |
[INFO] [stdout] 123 | profile_class: impl Streamable,
[INFO] [stdout] | ^^^^^^^^^^ not found in this scope
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0412]: cannot find type `ViewBuilder` in this scope
[INFO] [stdout] --> tests/integration_test.rs:124:6
[INFO] [stdout] |
[INFO] [stdout] 124 | ) -> ViewBuilder {
[INFO] [stdout] | ^^^^^^^^^^^ not found in this scope
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0412]: cannot find type `Dom` in this scope
[INFO] [stdout] --> tests/integration_test.rs:124:18
[INFO] [stdout] |
[INFO] [stdout] 118 | fn signed_in_view_builder(
[INFO] [stdout] | - help: you might be missing a type parameter: ``
[INFO] [stdout] ...
[INFO] [stdout] 124 | ) -> ViewBuilder {
[INFO] [stdout] | ^^^ not found in this scope
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0412]: cannot find type `ViewBuilder` in this scope
[INFO] [stdout] --> tests/integration_test.rs:125:25
[INFO] [stdout] |
[INFO] [stdout] 125 | let o_image: Option> = user
[INFO] [stdout] | ^^^^^^^^^^^ not found in this scope
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error[E0412]: cannot find type `Dom` in this scope
[INFO] [stdout] --> tests/integration_test.rs:125:37
[INFO] [stdout] |
[INFO] [stdout] 118 | fn signed_in_view_builder(
[INFO] [stdout] | - help: you might be missing a type parameter: ``
[INFO] [stdout] ...
[INFO] [stdout] 125 | let o_image: Option> = user
[INFO] [stdout] | ^^^ not found in this scope
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `std::convert::TryFrom`
[INFO] [stdout] --> tests/integration_test.rs:1:5
[INFO] [stdout] |
[INFO] [stdout] 1 | use std::convert::TryFrom;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout] |
[INFO] [stdout] = note: `#[warn(unused_imports)]` on by default
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error: aborting due to 30 previous errors; 1 warning emitted
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] Some errors have detailed explanations: E0405, E0412, E0433.
[INFO] [stdout]
[INFO] [stdout] For more information about an error, try `rustc --explain E0405`.
[INFO] [stdout]
[INFO] [stderr] error: could not compile `mogwai-html-macro` due to 31 previous errors; 1 warning emitted
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] [stderr] error: build failed
[INFO] running `Command { std: "docker" "inspect" "493c4babc7c7638cce8b8d5ce7d7a5442e3e06eacaf3ee4dbea28b42a3994c86", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "493c4babc7c7638cce8b8d5ce7d7a5442e3e06eacaf3ee4dbea28b42a3994c86", kill_on_drop: false }`
[INFO] [stdout] 493c4babc7c7638cce8b8d5ce7d7a5442e3e06eacaf3ee4dbea28b42a3994c86