@@ -202,9 +202,9 @@ error[E0277]: the trait bound `(): IntoPropValue<Option<Cow<'static, str>>>` is
20220245 | html! { <a href=() /> };
203203 | ^^ the trait `IntoPropValue<Option<Cow<'static, str>>>` is not implemented for `()`
204204 |
205- ::: $WORKSPACE/packages/yew/src/virtual_dom/mod.rs
205+ ::: $WORKSPACE/packages/yew/src/virtual_dom/mod.rs:69:47
206206 |
207- | pub fn new(key: &'static str, value: impl IntoOptPropValue<AttrValue>) -> Self {
207+ 69 | pub fn new(key: &'static str, value: impl IntoOptPropValue<AttrValue>) -> Self {
208208 | --------------------------- required by this bound in `PositionalAttr::new`
209209 |
210210 = note: required because of the requirements on the impl of `IntoOptPropValue<Cow<'static, str>>` for `()`
@@ -215,9 +215,9 @@ error[E0277]: the trait bound `NotToString: IntoPropValue<Option<Cow<'static, st
21521546 | html! { <input string=NotToString /> };
216216 | ^^^^^^^^^^^ the trait `IntoPropValue<Option<Cow<'static, str>>>` is not implemented for `NotToString`
217217 |
218- ::: $WORKSPACE/packages/yew/src/virtual_dom/mod.rs
218+ ::: $WORKSPACE/packages/yew/src/virtual_dom/mod.rs:69:47
219219 |
220- | pub fn new(key: &'static str, value: impl IntoOptPropValue<AttrValue>) -> Self {
220+ 69 | pub fn new(key: &'static str, value: impl IntoOptPropValue<AttrValue>) -> Self {
221221 | --------------------------- required by this bound in `PositionalAttr::new`
222222 |
223223 = note: required because of the requirements on the impl of `IntoOptPropValue<Cow<'static, str>>` for `NotToString`
@@ -228,9 +228,9 @@ error[E0277]: the trait bound `Option<NotToString>: IntoPropValue<Option<Cow<'st
22822847 | html! { <a media=Some(NotToString) /> };
229229 | ^^^^^^^^^^^^^^^^^ the trait `IntoPropValue<Option<Cow<'static, str>>>` is not implemented for `Option<NotToString>`
230230 |
231- ::: $WORKSPACE/packages/yew/src/virtual_dom/mod.rs
231+ ::: $WORKSPACE/packages/yew/src/virtual_dom/mod.rs:69:47
232232 |
233- | pub fn new(key: &'static str, value: impl IntoOptPropValue<AttrValue>) -> Self {
233+ 69 | pub fn new(key: &'static str, value: impl IntoOptPropValue<AttrValue>) -> Self {
234234 | --------------------------- required by this bound in `PositionalAttr::new`
235235 |
236236 = note: required because of the requirements on the impl of `IntoOptPropValue<Cow<'static, str>>` for `Option<NotToString>`
@@ -241,9 +241,9 @@ error[E0277]: the trait bound `Option<{integer}>: IntoPropValue<Option<Cow<'stat
24124148 | html! { <a href=Some(5) /> };
242242 | ^^^^^^^ the trait `IntoPropValue<Option<Cow<'static, str>>>` is not implemented for `Option<{integer}>`
243243 |
244- ::: $WORKSPACE/packages/yew/src/virtual_dom/mod.rs
244+ ::: $WORKSPACE/packages/yew/src/virtual_dom/mod.rs:69:47
245245 |
246- | pub fn new(key: &'static str, value: impl IntoOptPropValue<AttrValue>) -> Self {
246+ 69 | pub fn new(key: &'static str, value: impl IntoOptPropValue<AttrValue>) -> Self {
247247 | --------------------------- required by this bound in `PositionalAttr::new`
248248 |
249249 = note: required because of the requirements on the impl of `IntoOptPropValue<Cow<'static, str>>` for `Option<{integer}>`
@@ -254,9 +254,9 @@ error[E0277]: the trait bound `{integer}: IntoPropValue<Option<yew::Callback<Mou
25425451 | html! { <input onclick=1 /> };
255255 | ^ the trait `IntoPropValue<Option<yew::Callback<MouseEvent>>>` is not implemented for `{integer}`
256256 |
257- ::: $WORKSPACE/packages/yew/src/html/listener/listener_web_sys.rs
257+ ::: $WORKSPACE/packages/yew/src/html/listener/listener_web_sys.rs:2:1
258258 |
259- | / impl_action! {
259+ 2 | / impl_action! {
2602603 | | onabort(name: "abort", event: Event) -> web_sys::Event => |_, event| { event }
2612614 | | onauxclick(name: "auxclick", event: MouseEvent) -> web_sys::MouseEvent => |_, event| { event }
2622625 | | onblur(name: "blur", event: FocusEvent) -> web_sys::FocusEvent => |_, event| { event }
@@ -279,9 +279,9 @@ error[E0277]: the trait bound `yew::Callback<String>: IntoPropValue<Option<yew::
27927952 | html! { <input onclick=Callback::from(|a: String| ()) /> };
280280 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `IntoPropValue<Option<yew::Callback<MouseEvent>>>` is not implemented for `yew::Callback<String>`
281281 |
282- ::: $WORKSPACE/packages/yew/src/html/listener/listener_web_sys.rs
282+ ::: $WORKSPACE/packages/yew/src/html/listener/listener_web_sys.rs:2:1
283283 |
284- | / impl_action! {
284+ 2 | / impl_action! {
2852853 | | onabort(name: "abort", event: Event) -> web_sys::Event => |_, event| { event }
2862864 | | onauxclick(name: "auxclick", event: MouseEvent) -> web_sys::MouseEvent => |_, event| { event }
2872875 | | onblur(name: "blur", event: FocusEvent) -> web_sys::FocusEvent => |_, event| { event }
@@ -298,9 +298,9 @@ error[E0277]: the trait bound `Option<{integer}>: IntoPropValue<Option<yew::Call
29829853 | html! { <input onfocus=Some(5) /> };
299299 | ^^^^^^^ the trait `IntoPropValue<Option<yew::Callback<FocusEvent>>>` is not implemented for `Option<{integer}>`
300300 |
301- ::: $WORKSPACE/packages/yew/src/html/listener/listener_web_sys.rs
301+ ::: $WORKSPACE/packages/yew/src/html/listener/listener_web_sys.rs:2:1
302302 |
303- | / impl_action! {
303+ 2 | / impl_action! {
3043043 | | onabort(name: "abort", event: Event) -> web_sys::Event => |_, event| { event }
3053054 | | onauxclick(name: "auxclick", event: MouseEvent) -> web_sys::MouseEvent => |_, event| { event }
3063065 | | onblur(name: "blur", event: FocusEvent) -> web_sys::FocusEvent => |_, event| { event }
0 commit comments